怎么用CSS设置html中的表格边框样式
答案:1 悬赏:10 手机版
解决时间 2021-12-24 06:44
- 提问者网友:孤凫
- 2021-12-23 22:18
怎么用CSS设置html中的表格边框样式
最佳答案
- 五星知识达人网友:孤老序
- 2021-12-23 23:40
方法:
<style>
.myTable th{
border:1px solid #fff;
}
</style>
<table class="myTable">
<caption>table title and/or explanatory text</caption>
<thead>
<tr>
<th>header</th>
</tr>
</thead>
<tbody>
<tr>
<td>data</td>
</tr>
</tbody>
</table>
table 边框都是border属性,一般设置在th、tr、td上
border
简写属性,用于把针对四个边的属性设置在一个声明。
border-style
用于设置元素所有边框的样式,或者单独地为各边设置边框样式。
border-width
简写属性,用于为元素的所有边框设置宽度,或者单独地为各边边框设置宽度。
border-color
简写属性,设置元素的所有边框中可见部分的颜色,或为 4 个边分别设置颜色。
<style>
.myTable th{
border:1px solid #fff;
}
</style>
<table class="myTable">
<caption>table title and/or explanatory text</caption>
<thead>
<tr>
<th>header</th>
</tr>
</thead>
<tbody>
<tr>
<td>data</td>
</tr>
</tbody>
</table>
table 边框都是border属性,一般设置在th、tr、td上
border
简写属性,用于把针对四个边的属性设置在一个声明。
border-style
用于设置元素所有边框的样式,或者单独地为各边设置边框样式。
border-width
简写属性,用于为元素的所有边框设置宽度,或者单独地为各边边框设置宽度。
border-color
简写属性,设置元素的所有边框中可见部分的颜色,或为 4 个边分别设置颜色。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯