課程
/前端開發(fā)
/Bootstrap
/玩轉(zhuǎn)Bootstrap(基礎)
class="table table-striped"斑馬線表格類里為啥要加 table 不是 直接?table-striped嗎 有疑問 求解答
2016-09-16
源自:玩轉(zhuǎn)Bootstrap(基礎) 2-17
正在回答
.table這個類是設置表格的基本信息。
就例如這段,很多是基于.table這個類進行裝飾表格。
.table?{ ??width:?100%; ??max-width:?100%; ??margin-bottom:?20px; } .table?>?thead?>?tr?>?th, .table?>?tbody?>?tr?>?th, .table?>?tfoot?>?tr?>?th, .table?>?thead?>?tr?>?td, .table?>?tbody?>?tr?>?td, .table?>?tfoot?>?tr?>?td?{ ??padding:?8px; ??line-height:?1.42857143; ??vertical-align:?top; ??border-top:?1px?solid?#ddd; } ...
而.table-striped這個類是基于.table這個類上進行修飾的,只是修飾的方向不同
.table-striped?>?tbody?>?tr:nth-of-type(odd)?{ ??background-color:?#f9f9f9;??//只是起到添加背景的效果 }
qianqianQ 提問者
舉報
告訴你使用Bootstrap,并且能夠獨立定制出適合自己的Bootstrap
1 回答表格樣式問題
1 回答bootstrap的樣式名字
2 回答bootstrap樣式與原樣式的區(qū)別
1 回答關于bootstrap的css樣式
3 回答Bootstrap類名樣式改動
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學習伙伴
掃描二維碼關注慕課網(wǎng)微信公眾號
2016-09-16
.table這個類是設置表格的基本信息。
就例如這段,很多是基于.table這個類進行裝飾表格。
而.table-striped這個類是基于.table這個類上進行修飾的,只是修飾的方向不同