<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;}
我希望这可以在trs周围放置一个边框,但是它根本不会在其周围放置边框.我如何得到一个边界?
解决方法 添加表{border-collapse:collapse; }.从the CSS2 specification:
总结In [the
border-collapse: separate
model],each cell has an indivIDual border. […] Rows,columns,row groups,and column groups cannot have borders (i.e.,user agents must ignore the border propertIEs for those elements).
以上是内存溢出为你收集整理的html – 如何在tr标签周围放置边框?全部内容,希望文章能够帮你解决html – 如何在tr标签周围放置边框?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)