.tableStyle2 { border-spacing: 0px;}.tableStyle2 th { background-color: #1B7AE0; border-color: #1B7AE0; border-spacing: 0px;}.tableStyle2 tr { display: none;}
相应的HTML代码如下:
<table class = "tableStyle2" wIDth = "100%"><tr><th> ... </th><th> ... </th><th> ... </th><th> ... </th><th> ... </th></tr></table>
(表格的其余部分尚未写入.)
知道造成这种情况的原因是什么,以及如何隐藏表头中单元格之间的边界?
.tableStyle2 { border-spacing: 0px; border-collapse:collapse; /* <--- add this so all the internal <td>s share adjacent borders */ border:1px solID black; /* <--- so the outsIDe of the <th> don't get missed */}.tableStyle2 th { background-color: #1B7AE0; border-color: #1B7AE0; border-spacing: 0px; /* <---- won't really need this if you have border-collapse = collapse */ border-style:none; /* <--- add this for no borders in the <th>s */}.tableStyle2 tr { /* display: none; <--- you want to show the table */}总结
以上是内存溢出为你收集整理的HTML – 边框崩溃不再工作全部内容,希望文章能够帮你解决HTML – 边框崩溃不再工作所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)