Set cellpadding and cellspacing in CSS?

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

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

28条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-22 02:34

    The simple solution to this problem is:

    table
    {
        border: 1px solid #000000;
        border-collapse: collapse;
        border-spacing: 0px;
    }
    table td
    {
        padding: 8px 8px;
    }
    

提交回复
热议问题