如果要將此應用到多個圖像,那麼你應該使用一個類,但添加它作爲另一類,如果需要並記住您的唯一ID
so img id =「apple」class =「green borderradius」 將看起來不同於img id = 「蘋果」 級= 「綠色」 例如
見fiddle或摘錄
.green {
background-color: green;
}
.yellow {
background-color: yellow
}
.radius {
border-radius: 25px;
}
img {
background-size: 50px 50px;
background-repeat: no-repeat;
}
<img id ="apple" class="yellow radius" src="http://www.hudsonproduce.com/images/fruitimages/apples-fuji.png">
<img id="apple1" class="green radius" src="http://www.hudsonproduce.com/images/fruitimages/apples-fuji.png">
<img id ="apple2" class="green" src="http://www.hudsonproduce.com/images/fruitimages/apples-fuji.png">
添加其他類 –
'.'是類和''#是在CSS ID。 –