让我们说有
.myButtonClass{
/*#style;*/
}
现在我有了新的
<div id="myid">
一种方法是我可以拥有
<div id="myid" class="myButtonClass">
如果在我的CSS中我想将此类分配给div
,该怎么办?div.myid{
/* assign existing class */
.myButtonClass
}
怎么做?
答案 0 :(得分:0)
的 Live Demo 强> 的
如果您应用ID
或Class
,您现在习惯 <{strong> ID
或Class
Css a Div
就像这样
#myid.myButtonClass{
// style here
}
HTML
<div id="myid" class="myButtonClass">
// Some text here
</div>
更多信息关于多个 Class
或id
Click here
的 LIve Demo 强> 的
答案 1 :(得分:0)
使用此..
div#myid.myButtonClass{
//your code should be here
}
使用也可以使用它。
div#myid{
//your code should be here
}
div.myButtonClass{
//your code should be here
}
你可以使用任何一个约代码。这两件事之间的区别是,第一个是highly specified the particular div.
答案 2 :(得分:0)
如果没有第三方,你不能这样做,使用LESS(http://lesscss.org/)或Sass(http://sass-lang.com/)