在新的DIV HTML标记中导入现有的CSS类

时间:2012-11-08 06:13:48

标签: html css class stylesheet

让我们说有

.myButtonClass{
/*#style;*/
}

现在我有了新的

<div id="myid">

一种方法是我可以拥有

<div id="myid" class="myButtonClass">

如果在我的CSS中我想将此类分配给div

,该怎么办?
div.myid{
/* assign existing class */
.myButtonClass
}

怎么做?

3 个答案:

答案 0 :(得分:0)

Live Demo

如果您应用IDClass,您现在习惯 <{strong> IDClass Css a Div

就像这样

#myid.myButtonClass{
// style here
}

HTML

<div id="myid" class="myButtonClass">
// Some text here 
</div>

更多信息关于多个 Classid 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/