:first-child 選擇器未選擇所需元素
當嘗試選擇類別名為" 的div 中的第一個h1元素時detail_container”,有些使用者可能會遇到意外的行為。當 h1 元素不是 div 的直接第一個子元素時,預期的 CSS 規則「.detail_container h1:first-child」會失敗。
出現此問題是因為 :first-child 選擇器適用於第一個其父元素的直接子元素。在提供的範例中,h1 元素位於 ul 清單之後,detail_container div 的第一個子元素是 ul,而不是 h1。因此, :first-child 選擇器與 h1 不符。
要解決此問題,請考慮使用 :first-of-type 選擇器。此選擇器會匹配其父級中給定類型的第一個元素,無論它是否是直接的第一個子級。以下CSS 規則將選擇div 中的第一個h1 元素:
.detail_container h1:first-of-type { color: blue; }
但是,由於瀏覽器相容性限制,建議為第一個h1 元素使用指定的類別並以該類別為目標:
.detail_container h1.first { color: blue; }
以上是為什麼我的 :first-child 選擇器對我的 h1 元素不起作用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!