欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Bootstrap表格制作代碼

 更新時(shí)間:2017年03月17日 09:35:56   作者:boonyaxnn  
這篇文章主要為大家詳細(xì)介紹了Bootstrap表格的制作代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Bootstrap表格制作的具體代碼,供大家參考,具體內(nèi)容如下

Bootstrap 支持的一些表格元素:

可用于表格中的tablede 樣式

可用于表格中的<tr>, <th> 和 <td>

html與css代碼

<html> 
 <head> 
 <meta charset="utf-8"> 
 <meta name="viewport" content="width=device-width, initial-scale=1"> 
 <link rel="stylesheet" href="css/bootstrap.min.css" rel="external nofollow" > 
 <style> 
 div{ 
 font-family: '宋體'; 
 color: #0A0A0A; 
 } 
 tr,td{ 
 width:30px; 
 height: 50px; 
 font-size:24px; 
 } 
 </style> 
 </head> 
 
 <body> 
 <div class="container"> 
 <div class="header"> 
 <h1>表格</h1> 
 </div> 
 <p class="text-muted" style="font-size: 18px;">小妞妞的成績(jī)單:</p> 
 <!-- 
  <p class="text-muted">本行內(nèi)容是減弱的</p> 
  -->     
 <table class="table table-striped table-bordered table-hover table-condensed"> 
 <!-- 
  .table-striped 在 <tbody> 內(nèi)添加斑馬線形式的條紋 ( IE8 不支持) 
  .table-bordered 為所有表格的單元格添加邊框 
  .table-hover 在 <tbody> 內(nèi)的任一行啟用鼠標(biāo)懸停狀態(tài) 
  .table-condensed 讓表格更加緊湊 
 --> 
 <thead> 
  <tr class="active"> 
  <th>科目</th> 
  <th>成績(jī)</th> 
  </tr> 
 </thead> 
 <tbody> 
  <tr class="success"> 
  <td>語(yǔ)文</td> 
  <td>90</td> 
  </tr> 
  <tr> 
  <td>數(shù)學(xué)</td> 
  <td>95</td> 
  </tr> 
  <tr class="warning"> 
  <td>英語(yǔ)</td> 
  <td>85</td> 
  </tr> 
  <tr class="danger"> 
 <!-- 
  .active 對(duì)某一特定的行或單元格應(yīng)用懸停顏色;.success表示一個(gè)成功的或積極的動(dòng)作; 
  .warning 表示一個(gè)需要注意的警告;.danger 表示一個(gè)危險(xiǎn)的或潛在的負(fù)面動(dòng)作; 
 --> 
  <td>綜合</td> 
  <td>200</td> 
  </tr> 
 </tbody> 
 </table> 
 </div> 
 
 <script src="js/jquery.min.js"></script> 
 <script src="js/bootstrap.min.js"></script> 
 </body> 
 
</html>

效果圖:

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論