Borders not shown in Firefox with border-collapse on table, position: relative on tbody, or background-color on cell

后端 未结 7 2044
余生分开走
余生分开走 2020-11-30 01:58

Consider the following HTML:

<
7条回答
  •  既然无缘
    2020-11-30 02:44

    This is a bug in firefox and hopefully they fix it soon. But in the mean time I was able to fix this issue for me by setting my td cells to position: static. Hopefully that will help someone else.

    td {
        position: static;
    }    
    

提交回复
热议问题