溫馨提示×

溫馨提示×

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

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

如何制作Bootstrap表格

發(fā)布時(shí)間:2021-06-22 11:36:28 來源:億速云 閱讀:222 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)如何制作Bootstrap表格,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

Bootstrap 支持的一些表格元素:

如何制作Bootstrap表格

可用于表格中的tablede 樣式

如何制作Bootstrap表格

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

如何制作Bootstrap表格

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"> 
 <h2>表格</h2> 
 </div> 
 <p class="text-muted" >小妞妞的成績單:</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>成績</th> 
  </tr> 
 </thead> 
 <tbody> 
  <tr class="success"> 
  <td>語文</td> 
  <td>90</td> 
  </tr> 
  <tr> 
  <td>數(shù)學(xué)</td> 
  <td>95</td> 
  </tr> 
  <tr class="warning"> 
  <td>英語</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>

效果圖:

如何制作Bootstrap表格

關(guān)于“如何制作Bootstrap表格”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI