Why border of not showing in IE?

前端 未结 3 1401
南方客
南方客 2020-12-11 08:23

Why border of tfoot tr:first-child not showing in IE. I\'m checking in IE7.

font-weight:bold; background:yellow is showing in IE but border

3条回答
  •  春和景丽
    2020-12-11 08:50

    Give position as relative for tr class, which will fix.

    tfoot tr {position:relative; border-bottom:solid 1px #ccc; }

提交回复
热议问题