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); } }