感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bootstrap 上下文</title>
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<table class="table">
<caption>上下文表格布局</caption>
<thead>
<tr>
<th>产品</th>
<th>付款日期</th>
<th>状态</th>
</tr>
</thead>
<tbody>
<tr class="active">
<td>产品1</td>
<td>23/11/2013</td>
<td>待发货</td>
<tr class="success">
<td>产品2</td>
<td>10/11/2013</td>
<td>发货中</td>
<tr class="warning">
<td>产品3</td>
<td>20/10/2013</td>
<td>待确认</td>
<tr class="danger">
<td>产品4</td>
<td>已退货</td>
</tbody>
</table>
</body>
</html>
输入 JavaScript 代码……
xxxxxxxxxx
输入 CSS 代码……