250 HTML table cellpadding 属性 249 HTML table border 属性 251 HTML table cellspacing 属性 HTML <table> cellpadding 属性 实例 把表格单元边沿与单元内容之间的间距设置为 10 像素: <table border="1" cellpadding="10"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> 试一试 浏览器支持 所有主流浏览器都支持 cellpadding 属性。 定义和用法 HTML5 不支持 <table> cellpadding 属性。请使用 CSS 代替。 cellpadding 属性规定单元边沿与单元内容之间的空间,以像素计。 注意:请勿将该属性与 cellspacing 属性相混淆,cellspacing 属性规定的是单元之间的空间。 提示:从实用角度出发,最好不要规定 cellpadding,而是使用 CSS 来添加 padding(内边距)。 语法 <table cellpadding="pixels"> 属性值 值 描述 pixels 规定单元边沿与单元内容之间的空间。 249 HTML table border 属性 251 HTML table cellspacing 属性