CSS表格格式化:border-collapse属性的应用
创作时间:
作者:
@小白创作中心
CSS表格格式化:border-collapse属性的应用
引用
CSDN
1.
https://blog.csdn.net/lixin5456985/article/details/143537269
我们要完成的表格如下图所示。完成这个任务有许多方法,但是建议使用和向导中所用的相似的模式来完成以下的事情。
- 把标题和包含数字的列数据右对齐
- 把标题和包含文本的列数据左对齐
- 添加顶部和底部边框,以及页脚上方的边框
- 将主表的所有奇数行条纹化
CSS代码
table {
border-collapse: collapse;
font-size: 75%;
}
thead th:nth-child(2),
thead th:nth-child(3),
tbody td:nth-child(2),
tbody td:nth-child(3),
tfoot :first-child{
text-align:right;
}
thead th:nth-child(1),
thead th:nth-child(4),
tbody td:nth-child(1),
tbody td:nth-child(4),
tfoot :last-child{
text-align:left;
}
thead {
border-top: solid 1px #c0c0c0;
}
tfoot {
border-bottom:solid 1px #c0c0c0;
border-top: solid 1px #c0c0c0;
}
tbody tr:nth-child(odd) {
background-color: #c0c0c0;
}
注意事项
border-collapse: collapse;是关键,不添加thead和tfoot中的boder属性不生效.
HTML代码
<table>
<caption>A summary of the UK's most famous punk bands</caption>
<thead>
<tr>
<th scope="col">Band</th>
<th scope="col">Year formed</th>
<th scope="col">No. of Albums</th>
<th scope="col">Most famous song</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Buzzcocks</th>
<td>1976</td>
<td>9</td>
<td>Ever fallen in love (with someone you shouldn't've)</td>
</tr>
<tr>
<th scope="row">The Clash</th>
<td>1976</td>
<td>6</td>
<td>London Calling</td>
</tr>
<tr>
<th scope="row">The Damned</th>
<td>1976</td>
<td>10</td>
<td>Smash it up</td>
</tr>
<tr>
<th scope="row">Sex Pistols</th>
<td>1975</td>
<td>1</td>
<td>Anarchy in the UK</td>
</tr>
<tr>
<th scope="row">Sham 69</th>
<td>1976</td>
<td>13</td>
<td>If the kids are united</td>
</tr>
<tr>
<th scope="row">Siouxsie and the Banshees</th>
<td>1976</td>
<td>11</td>
<td>Hong Kong Garden</td>
</tr>
<tr>
<th scope="row">Stiff Little Fingers</th>
<td>1977</td>
<td>10</td>
<td>Suspect Device</td>
</tr>
<tr>
<th scope="row">The Stranglers</th>
<td>1974</td>
<td>17</td>
<td>No More Heroes</td>
</tr>
</tbody>
<tfoot>
<tr>
<th scope="row" colspan="2">Total albums</th>
<td colspan="2">77</td>
</tr>
</tfoot>
</table>
参考文档
热门推荐
郭利方教你中考高考前心态调整
方海东老师教你中考高考心态调整
中考高考倒计时,家长如何稳住孩子心态?
十首菊花诗词,淡泊宁静,默默坚守,清香如故
英语专业就业全景:四大行业需求分析与MTI、CATTI价值评估
新能源车企倒闭潮下,16万车主面临维修困境
百度吉利联手打造的极越汽车突然倒闭,11月仅售2485辆
资金链断裂致停产,高合极越威马相继陷入困境
《栋梁》:央视春晚的建筑美学盛宴
董子健处女作摘得东京电影节艺术贡献奖,易烊千玺演技获认可
Netflix 2024必看剧集大盘点:从《鱿鱼游戏2》到《三体》
球菊持续爆花的5个养护技巧,做好了就等看花
权力与喜剧的交织:莎士比亚《亨利四世》解读
从开国君主到断头王:波旁王朝六代统治者
1453-1485:玫瑰战争改写英国历史

亨利四世重塑法国:三次改宗实现国家统一
宗教妥协换王冠,亨利四世开创波旁王朝
这个春节,到成都街头走一走!成都2025新春活动今晚发布
特朗普2024年选战:万斯从“反特朗普者”变身副手
夏日脚气高发,联苯苄唑溶液教你科学应对
复方联苯苄唑溶液:真菌感染的克星
312经络锻炼法,助你活到99
冬日养生宜艾灸 藏阳补阳驱寒邪
微信群里抢红包,小心被行拘!检方告诫:这种红包别抢……
微信设置教程:如何通过手机号找到你并保护隐私安全
黄山、九华山、宏村:安徽三大旅游胜地,你该如何选择?
山楂饼的做法
中医药小常识:药食同源之山楂
黄山与徽州古城:安徽文化探秘之旅
安徽旅游必打卡:黄山、九华山、宏村三日游全攻略