這裏的樣本:如何引用另一個css風格?
.my-class {
font-size: 12px;
}
.my-another-class {
/* here I want to include .my-class style */
.my-class;
border: 0;
}
我可以包括一個CSS類到另一個或沒有?
這裏的樣本:如何引用另一個css風格?
.my-class {
font-size: 12px;
}
.my-another-class {
/* here I want to include .my-class style */
.my-class;
border: 0;
}
我可以包括一個CSS類到另一個或沒有?
您可以將多個目標定義爲.my-class
規則,然後再指定規則只是.my-another-class
:
.my-class,
.my-another-class {
font-size: 12px;
}
.my-another-class {
border: 0;
}
你甚至可以然後覆蓋某些特性,例如
.my-class,
.my-another-class {
color: red;
font-size: 12px;
}
.my-another-class {
border: 0;
color: blue; /* overrides color: red; on .my-another-class */
}
你不能,但你可以這樣做:
.my-class, .my-another-class{
font-size: 12px;
}
.my-another-class {
border: 0;
}
goo ..... SCSS LESS SASS? http://stackoverflow.com/questions/11084757/sass-scss-nesting-and-multiple-classes – 2014-09-19 13:49:00
不,你不能在純CSS中做到這一點。但是,您可以將多個類應用於任何元素。 – j08691 2014-09-19 13:49:10
您可以設置多個選擇器,如: .my-another-class, .my-class {} – TheFrozenOne 2014-09-19 13:50:48