我在申請這個CSS類時遇到了麻煩。 red-text
類不適用於我的HTML。爲什麼?我該如何申請這個CSS類
這裏是CSS:
<style>
.red-text {
color: #FF0000
}
.green-text {
color: #00FF00
}
.dodger-blue-text {
color: #2998E4
}
.orange-text {
color: #FFA500
}
</style>
HTML:
<h1 class="red-text">I am red!</h1>
<h2 class="green-text">I am green!</h2>
<h3 class="dodger-blue-text">I am dodger blue!</h3>
<h4 class="orange-text">I am orange!</h4>
爲什麼red-text
沒有得到應用?
當然它確實如此,你的代碼的其餘部分是怎麼樣的? – LGSon