IE CSS bug: table border showing div with visibility: hidden, position: absolute

前端 未结 6 563
南旧
南旧 2021-01-05 00:27

The issue

I have a

on a page which is initially hidden with a visibility: hidden; position: absolute. The issue is that if a
6条回答
  •  失恋的感觉
    2021-01-05 01:20

    This is a IE bug. Firefox doesn't recognize "border-collapse" using "border-spacing" instead which does not cause this problem. The solution of using "display:none" works, but there's another possibility. If the visibility property is set using Javascript then the border is hidden as well (as expected).

提交回复
热议问题