How do you disable padding in cells?

This question already has an answer here:

  • Set cellpadding and cellspacing in CSS? 26 answers

  • You need to set the border-collapse and border-spacing. Here's a jsfiddle that has an example.

    include the following css in your code, or put it in a class and assign that class to your table

    table {
        border-collapse: collapse;
        border-spacing: 0; 
    }
    

    Here's a good writeup of border-collapse

    Here's a writeup of border-spacing

    链接地址: http://www.djcxy.com/p/16950.html

    上一篇: 你用什么CSS来设计表格CELL?

    下一篇: 你如何禁用单元格中的填充?