时间:2021-05-08
先看效果图:
CSS:
复制代码代码如下:
<style type="text/css">
table {
max-width: 100%;
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
}
.table {
width: 100%;
margin-bottom: 18px;
}
.table th, .table td {
padding: 8px;
line-height: 18px;
text-align: left;
vertical-align: top;
border-top: 1px solid #dddddd;
}
.table th {
font-weight: bold;
}
.table thead th {
vertical-align: bottom;
}
.table caption + thead tr:first-child th, .table caption + thead tr:first-child td, .table colgroup + thead tr:first-child th, .table colgroup + thead tr:first-child td, .table thead:first-child tr:first-child th, .table thead:first-child tr:first-child td {
border-top: 0;
}
.table tbody + tbody {
border-top: 2px solid #dddddd;
}
.table-condensed th, .table-condensed td {
padding: 4px 5px;
}
.table-bordered {
border: 1px solid #dddddd;
border-collapse: separate;
*border-collapse: collapsed;
border-left: 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.table-bordered th, .table-bordered td {
border-left: 1px solid #dddddd;
}
.table-bordered caption + thead tr:first-child th, .table-bordered caption + tbody tr:first-child th, .table-bordered caption + tbody tr:first-child td, .table-bordered colgroup + thead tr:first-child th, .table-bordered colgroup + tbody tr:first-child th, .table-bordered colgroup + tbody tr:first-child td, .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
border-top: 0;
}
.table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child {
-webkit-border-top-left-radius: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
}
.table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child {
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
}
.table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child {
-webkit-border-radius: 0 0 0 4px;
-moz-border-radius: 0 0 0 4px;
border-radius: 0 0 0 4px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
}
.table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
}
.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
background-color: #f9f9f9;
}
.table tbody tr:hover td, .table tbody tr:hover th {
background-color: #f5f5f5;
}
</style>
再看表格引用:
复制代码代码如下:
<table class="table table-bordered table-striped ">
<thead>
<tr>
<th width="30"> <input type="checkbox" name="ckall" id="ckall" />
</th>
<th width="40"> ID号 </th>
<th width="80"> 编码 </th>
<th> 名称 </th>
<th> 用户密码 </th>
<th width="60"> 管理员否 </th>
<th width="55"> 操作 </th>
</tr>
</thead>
<tr>
<td><input type="checkbox" name="c_id" value="a" /></td>
<td>1</td>
<td>awinlau</td>
<td> 胡光光</td>
<td> awin</td>
<td> 管理员 </td>
<td><a href="#" class="btn btn-mini"><i class="icon-edit"> </i>编辑</a></td>
</tr>
<tr>
<td><input type="checkbox" name="c_id" value="a" /></td>
<td>2</td>
<td>hugge</td>
<td> 刘若英</td>
<td> test</td>
<td> 管理员 </td>
<td><a href="#" class="btn btn-mini"><i class="icon-edit"> </i>编辑</a></td>
</tr>
<tr>
<td><input type="checkbox" name="c_id" value="a" /></td>
<td>3</td>
<td>awinlau</td>
<td> 胡光光</td>
<td> awin</td>
<td> 管理员 </td>
<td><a href="#" class="btn btn-mini"><i class="icon-edit"> </i>编辑</a></td>
</tr>
<tr>
<td><input type="checkbox" name="c_id" value="a" /></td>
<td>4</td>
<td>awinlau</td>
<td> 胡光光</td>
<td> awin</td>
<td> 管理员 </td>
<td><a href="#" class="btn btn-mini"><i class="icon-edit"> </i>编辑</a></td>
</tr>
</table>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
jQuery轻松实现表格的隔行变色和点击行变色的实例代码使用jquery设置表格样式.even{background-color:red;}.odd{backg
本文实例为大家分享了js实现隔行变色的具体代码,供大家参考,具体内容如下functioncreateTable(){//创建表格vartable=documen
本文实例讲述了JS+CSS实现表格高亮的方法。分享给大家供大家参考。具体如下:这里使用JavaScript+CSS实现表格高亮的功能,实际上类似于隔行换色的效果
首先定义好样式,利用v-for中的index值,然后绑定样式来实现隔行变色效果。 以下为完整代码,很简单,但也是个技巧。title.on{background
在模仿easyui的dataGrid表格插件的同时,自己去封装了一个。实现了基本的json数据的动态加载,自动分页,全选全不选,鼠标悬浮变色,隔行变色等由于涉及