Removing unwanted table cell borders with CSS

前端 未结 9 1098
灰色年华
灰色年华 2020-12-02 14:57

I have a peculiar and frustrating problem. For the simple markup:

9条回答
  •  没有蜡笔的小新
    2020-12-02 15:41

    You may also want to add

    table td { border:0; }
    

    the above is equivalent to setting cellpadding="0"

    it gets rid of the padding automatically added to cells by browsers which may depend on doctype and/or any CSS used to reset default browser styles

提交回复
热议问题