我正在使用引导 css 框架。我想创建一个有多种样式的表格。代码是这样的:
<table id="myTable" class="table table-bordered table-striped table-condensed">
....
</table>
我怎样才能避免在这里使用这么多类(table table-bordered table-striped table-condensed)?CSS 可以做一些类似 OO 的扩展吗?我的意思是定义一个名为 myTable 的类,它可以有许多预定义的样式。
虚拟代码:
table.myTable{
have_class: table table-bordered table-striped table-condensed;
}