【发布时间】:2012-05-01 07:42:55
【问题描述】:
我希望表格行的底部和顶部都有边框。下面的代码在 IE 中有效,但在 Firefox 或 Safari 中无效!请帮忙!
HTML
<tr class='TableRow'>
CSS
.TableRow{
border-bottom: 2px solid rgb(167,167,167);
border-top: 2px solid rgb(167,167,167);
}
【问题讨论】:
标签: html css html-table border tablerow