作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的页面中有不同的表格,它们应该有不同的边框、cellpadding 等。我可以创建很多类,例如,
.pad5 td {padding:5px}
然后使用,
<table class="pad5">
但是如果我使用'table'是css,样式将应用于所有表格。我怎样才能达到这个结果?
最佳答案
您可以尝试为每个表添加一个 ID,然后在 css 中使用此 ID 进行引用,例如:
CSS 和 HTML:
#table1 tr td {
padding: 5px;
border: 4px solid #888;
}
#table2 tr td {
padding: 5px;
border: 4px solid red;
}
<table id="table1">
<tr>
<td>first content</td>
<td>second content</td>
</tr>
</table>
<table id="table2">
<tr>
<td>first content</td>
<td>second content</td>
</tr>
</table>
关于css - 如何在 CSS 中拥有不同的表格样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38746013/
我是一名优秀的程序员,十分优秀!