首页 > 代码库 > bootstrap table样式

bootstrap table样式

 

.table-striped可以使奇数行的背景设为灰色。

 

  1. <table class="table table-striped">  

  2.   …  

  3. </table>  


.table-bordered可以使边框显示。

 

  1. <table class="table table-bordered">  

  2.   …  

  3. </table>  


.table-hover可以使鼠标悬停的行的背景变为灰色。

 

  1. <table class="table table-hover">  

  2.   …  

  3. </table>  


.table-condensed可以使行间距变小。

 

  1. <table class="table table-condensed">  

  2.   …  

  3. </table>  



 

bootstrap table样式