中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CSS中的圓角,隔行,變色的具體實現方法

發布時間:2021-08-10 16:58:47 來源:億速云 閱讀:102 作者:chen 欄目:web開發

本篇內容主要講解“CSS中的圓角,隔行,變色的具體實現方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“CSS中的圓角,隔行,變色的具體實現方法”吧!

先看效果圖:
CSS中的圓角,隔行,變色的具體實現方法 
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>

到此,相信大家對“CSS中的圓角,隔行,變色的具體實現方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

安顺市| 湖北省| 诏安县| 房产| 沁阳市| 灵川县| 九寨沟县| 自治县| 壶关县| 沙河市| 保亭| 九龙城区| 常德市| 巴里| 连南| 鱼台县| 台安县| 雅安市| 都安| 武川县| 扶绥县| 双城市| 荥阳市| 丹棱县| 石嘴山市| 东光县| 城市| 甘德县| 读书| 开阳县| 广饶县| 湖南省| 新化县| 汤原县| 乌拉特后旗| 绥滨县| 南木林县| 万宁市| 图们市| 屏东市| 汨罗市|