Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张表,我在其中应用了一些 CSS,即
table tr{ border:1px solid black; }
问题是,只要 tr 为空,就不会显示边框。我附上了一张快照。我需要知道我错在哪里。
添加 任何未显示的值。
使用 CSS,您可以只使用
table { empty-cells: show; }
在样式表中,建议将所有空单元格显示为普通单元格。