2011-06-10 43 views

回答

3

它沒有得到簡單得多:

#element1, #element2 { 
    background: red 
} 
#element1 { 
    font: 20px sans-serif 
} 
#element2 { 
    font: 24px serif 
} 

您應該selector grouping閱讀起來。

+0

+1進行分組...大概比普通班更好的解決方案。 – 2011-06-10 17:54:02

1

你可以申請一個以上的類的元素...

HTML:

<div class="common div1">My Stuff</div> 
<div class="common div2">My Stuff 2</div> 

CSS:

.common { 
background-color:blue; 
background-image:url("bill.jpg"); 
background-repeat:no-repeat; 
} 
.div1 { 
font-family:Calibri; 
} 
.div2 { 
font-family:Arial; 
} 
0

給它一個類+的ID

<style type="text/css"> 
div.common { background:blabla; } 
div #type1 { font-style:blabla; } 
div #type2 { font-style:otherblabla; } 
</style> 
<div class="common" id="type1">asd</div> 
<div class="common" id="type2">asd</div> 

或者使用刊登的方法其他人,2班