我试图突出显示一个表格行的边界.不幸的是,这仅适用于第一行单元格.较低的行有一个不改变颜色的边框.我已经尝试使用大纲,但它不会很好玩:hover in webkit.
想象你的标准表html.一些tr有一些td.悬停在一行应该突出显示其红色边框.
table { border-collapse: collapse; } /*I am aware of separate */ table td { border: 3px solid black; } table tr:hover td { border-top-color: red; border-bottom-color: red; } table tr:hover td:first-child { border-left-color: red; } table tr:hover td:last-child { border-right-color: red; }
我可以采用替代方法,但是我坚持桌面结构.除了标准< table>之外,不要插入额外的HTML < TR> < TD>