本篇文章给大家分享的是有关CSS中怎么实现表格细边框,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。代码如下:<!DOCTYPE 
本篇文章给大家分享的是有关CSS中怎么实现表格细边框,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>表格细边框的两种CSS实现方法</title>
<style type="text/css">
.tab1
{
width: 300px;
height: 200px;
border: 1px solid #ccc;
border-collapse: collapse;
}
.tab1 td, .tab1 th
{
border: 1px solid #ccc;
padding: 5px;
}
.tab2
{
width: 300px;
height: 200px;
background-color: #ccc;
border-spacing: 1px;
}
.tab2 td, .tab2 th
{
background-color: #fff;
}
</style>
</head>
<body>
第一种 (通过XHTML验证)
<table class="tab1">
<thead>
<tr>
<th>
表头
</th>
<th>
表头
</th>
</tr>
</thead>
<tr>
<td>
Admin10000.com
</td>
<td>
Admin10000.com
</td>
</tr>
<tr>
<td>
Admin10000.com
</td>
<td>
Admin10000.com
</td>
</tr>
</table>
第二种 (通过XHTML验证)
<table class="tab2">
<thead>
<tr>
<th>
表头
</th>
<th>
表头
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Admin10000.com
</td>
<td>
Admin10000.com
</td>
</tr>
<tr>
<td>
Admin10000.com
</td>
<td>
Admin10000.com
</td>
</tr>
</tbody>
</table>
</body>
</html>
以上就是CSS中怎么实现表格细边框,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注编程网JavaScript频道。
--结束END--
本文标题: CSS中怎么实现表格细边框
本文链接: https://lsjlt.com/news/72615.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0