Set cellpadding and cellspacing in CSS?

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

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

28条回答
  •  迷失自我
    2020-11-22 02:20

    For tables, cellspacing and cellpadding are obsolete in HTML 5.

    Now for cellspacing you have to use border-spacing. And for cellpadding you have to use border-collapse.

    And make sure you don't use this in your HTML5 code. Always try to use these values in a CSS 3 file.

提交回复
热议问题