我有一個非常簡單的HTML頁面:如何在tr標籤周圍添加邊框?
<table>
<tr><th>header1</th><th>header2</th></tr>
<tr><td>item1</td><td>item2</td></tr>
<tr><td>item3</td><td>item4</td></tr>
</table>
通過一些簡單的CSS:
tr {
border:1px solid blue;
}
我希望它可以把周圍的邊框tr
秒,但它並沒有把邊框它根本就沒有。我如何獲得圍繞tr
的邊框?
[it does not(http://jsfiddle.net/keTPJ/)? –
你使用什麼瀏覽器?這應該工作得很好。 – Brad
哦,我明白了......這個奇怪的現象發生在IE7 ......或怪癖模式......這是有道理的。 –