Set cellpadding and cellspacing in CSS?

前端 未结 28 1484
暖寄归人
暖寄归人 2020-11-22 02:15

In an HTML table, the cellpadding and cellspacing can be set like this:

28条回答
  •  执笔经年
    2020-11-22 02:22

    You can simply do something like this in your CSS, using border-spacing and padding:

    table {
      border-collapse: collapse;
    }
    
    td, th {
      padding: 1em;
      border: 1px solid blue;
    }
head_1 head_2 head_3 head_4
txt_1 txt_2 txt_3 txt_4

提交回复
热议问题