# 21 天 Bootstrap 5 新手實戰營 - 5/13(四) 每日任務 ###### tags: `Bootstrap 5` > ## 權重 * HTML 標籤:1分 * CSS 類別選擇器:10分 * CSS ID選擇器:100分 * element:1000分 * !important:10000分 > ## 題目 ### 第一題 請問以下 HTML 的 h1 是什麼顏色? ``` <h1 class="t2 t1">標題</h1> ``` ``` <!-- CSS --> .t1 { color: black; } .t2 { color: blue; } ``` ### 第二題 請問以下 HTML 的 h1 是什麼顏色? ``` <h1 class="t1 t2" id="t">標題</h1> ``` ``` <!-- CSS --> .t1 { color: black; } #t { color: orange; } .t2 { color: blue; } ``` ### 第三題 請問以下 HTML 的 h1 是什麼顏色? ``` <h1 class="t1 t2" id="t" style="color:pink;">標題</h1> ``` ``` <!-- CSS --> #t { color: orange; } .t1 { color: black; } .t2 { color: blue; } ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up