Set cellpadding and cellspacing in CSS?

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

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

28条回答
  •  轮回少年
    2020-11-22 02:16

    For those who want a non-zero cellspacing value, the following CSS worked for me, but I'm only able to test it in Firefox.

    See the Quirksmode link posted elsewhere for compatibility details. It seems it may not work with older Internet Explorer versions.

    table {
        border-collapse: separate;
        border-spacing: 2px;
    }
    

提交回复
热议问题