我有一個這樣的html頁面。我想知道的是,是否可以將此樣式的'bottom:5.0rem'僅應用於以下父項的div標籤,而不適用於p父項的div標籤?我想知道如果我不把'style = bottom:5.0rem'做到這一點,''爲的如何使用CSS在我的頁面中指定div標籤
<div class="section">
<a href="...">
<div id="first">
<img/>
<div> <--- but not here
<p> some text </p>
</div/
</div>
</a>
<div id="first">
<div> <---- only to here
<a> anchor </a>
<div>
</div>
</div>
屬性我曾嘗試:
.section div#first {
bottom: 5.0rem;
}
但是,這將更改應用於這兩個DIV標籤。