Chrome render bug with border-collapse

前端 未结 1 816
梦谈多话
梦谈多话 2021-01-22 11:43

Chrome renders this markup incorrectly (see jsfiddle for full markup).

table { border-collapse: collapse }

Here it is in Chrome:

1条回答
  •  粉色の甜心
    2021-01-22 12:31

    According to Chrome bug with colspan and border?, this is a Chrome bug since 2008... which is not fixed yet.

    One workaround for this issue is: not use colspan. Sample code is:

    
      1
      2
      3
      
      
      
    
    

    instead of

      
        1
        2
        3
        
      
    

    fiddle for your example.

    Or, you can use mistermansam's workaround by abandon border-collapse.

    0 讨论(0)
提交回复
热议问题