我想在我的CSS不同的標題/頭使用,具有相同的字體,但用不同的字體大小,等我有這樣的:如何使用多個標題CSS
#titulo1{
font-family: 'Roboto', sans-serif;
font-size: 40px;
font-height:50px;
color: #ffffff;
}
#titulo2{
font-family: 'Roboto', sans-serif;
font-size: 30px;
font-height: 40px;
color: #73bd34;
}
#titulo3{
font-family: 'Roboto', sans-serif;
font-size: 20px;
font-height: 30px;
color: #5f9b16;
}
#titulo4{
font-family: 'Roboto', sans-serif;
font-size: 13px;
font-height: 15px;
font-weight: bold;
color: #000000;
}
現在我想用一些一些divs的標題和其他人的標題。 像這樣:
.slogan #titulo1{
...
}
.pesquisa #titulo3{
...
}
但它不工作,我只能讓它在我的HTML文件中使用像這樣的工作:
<div class="slogan" id="titulo1">
是啊,我已經訪問過該網頁: http://www.w3schools.com/cssref/css_selectors.asp,仍然沒有
我建議你在文檔看看CSS選擇器:http://stackoverflow.com/documentation/css/611/selectors#t=201702091124578300889 –
您需要使用類而不是id - id應該是唯一的。如果你想用一個口號和標識titulo1來改變元素,你需要刪除選擇器之間的空格:'#titulo1.slogan'(我已經把訂單換成了我喜歡的ID,因爲它們是先來的有更大的重量)。 [這是一篇關於css特異性的好文章](https://css-tricks.com/specifics-on-css-specificity/) – Pete