我正在使用bootstrap.less,我想在所有表中添加class =“table table-striped table-hover”。是否有可能实现这一目标?
我想添加类似的内容:
table {
//Add class here
}
答案 0 :(得分:4)
如果我理解正确,我相信你正在寻找:
table {
.table;
.table-striped;
.table-hover;
/* Any other default table styles */
}
虽然你不能将class="table table-striped table-hover"
添加到每个元素(JS-realm中更多),但是通过使用其他类作为mixins添加到默认的table
元素中,可以获得相同的效果样式。有关更多示例,请参阅LESS documentation。