如需控制边框和表格内容之间的间距,请在 <td>
和 <th>
元素上使用 padding 属性:
th, td {
padding: 15px;
text-align: left;
}
水平分隔线
向 <th>
和 <td>
添加 border-bottom 属性,以实现水平分隔线:
th, td {
border-bottom: 1px solid #ddd;
}
如需控制边框和表格内容之间的间距,请在 <td>
和 <th>
元素上使用 padding 属性:
th, td {
padding: 15px;
text-align: left;
}
水平分隔线
向 <th>
和 <td>
添加 border-bottom 属性,以实现水平分隔线:
th, td {
border-bottom: 1px solid #ddd;
}