📅  最后修改于: 2023-12-03 15:21:35.032000             🧑  作者: Mango
在网页中,表格是常见的一种元素,我们可以通过CSS样式来美化表格,其中,td元素是表格中最常用的元素之一。
以下是表格中常用的CSS样式:
border
:设置边框,例如 border: 1px solid black;
padding
:设置内边距,例如 padding: 10px;
text-align
:设置文本对齐方式,例如 text-align: center;
background-color
:设置背景颜色,例如 background-color: #eee;
font-size
:设置字体大小,例如 font-size: 16px;
font-weight
:设置字体加粗,例如 font-weight: bold;
下面是一个简单的中间表格样式实现示例:
table {
border-collapse: collapse;
}
td {
border: 1px solid #ccc;
padding: 10px;
text-align: center;
background-color: #f8f8f8;
font-size: 14px;
}
td:first-child {
border-left: none;
}
td:last-child {
border-right: none;
}
tr:first-child td {
border-top: none;
}
tr:last-child td {
border-bottom: none;
}
该样式会显示一个带有灰色边框、浅灰背景色以及居中对齐的中间表格。