demo 源码 地址 https://github.com/qqqzhch/webfanshtml
compass 的表格提供了集中常见样式git
outer-table-borders($width, $color) 控制外边边框的尺寸和颜色github
inner-table-borders($width, $color) 控制里面边框的尺寸和颜色web
例如字体
.table1{ table { @include inner-table-borders(1px, #7a98c6); @include outer-table-borders(2px); } }
例如blog
.table2{ table { @include table-scaffolding; } }
参数分别为 偶数行颜色、奇数行颜色,交叉行颜色,头部颜色,底部颜色get
例如 源码
.table3{ table { $table-color: #7a98c6; @include alternating-rows-and-columns($table-color, adjust-hue($table-color, -120deg), #222222); } }