Cannot put margin on tag with neither CSS nor cellspacing attribute

后端 未结 7 1725
感情败类
感情败类 2020-12-13 09:39

For whatever reason, I have been unable to get any table cells to have margin between them. I want the table cells to have a grey background colour (over a white page backgr

相关标签:
7条回答
  • 2020-12-13 10:08

    If you're using a CSS reset at the beginning of your stylesheet, check to see if it has the following code.

    table {
      border-collapse: collapse;
    }
    

    If that's the case, try overriding it with:

    border-collapse: separate;
    
    0 讨论(0)
提交回复
热议问题