有沒有改變顏色的方法?在CSS中顏色標籤
<label for="Vorname">Vorname: </label>
<input type="text" id="Vorname" >
我用這個作爲我的CSS
#vorname {
position: relative;
font-family: 'Lato', sans-serif;
font-size: 150%;
color: white;
} 出於某種原因,它不工作d: 希望有人能幫助我。非常感謝
有沒有改變顏色的方法?在CSS中顏色標籤
<label for="Vorname">Vorname: </label>
<input type="text" id="Vorname" >
我用這個作爲我的CSS
#vorname {
position: relative;
font-family: 'Lato', sans-serif;
font-size: 150%;
color: white;
} 出於某種原因,它不工作d: 希望有人能幫助我。非常感謝
的#
表明CSS cooresponds一個ID,所以你應該添加一個ID,標籤是這樣的:
<label id="VornameLable" for="Vorname">Vorname: </label>
<input type="text" id="VornameTextInput" >
和CSS:
#VornameLable {
position: relative;
font-family: 'Lato', sans-serif;
font-size: 150%;
color: white;
}
的jsfiddle:
您的ID是大寫,w你的CSS是小寫字母。如果您在#css中將#vorname更改爲#Vorname,它應該可以正常工作,但是在白色背景上會有白色文本
'vorname'和'Vorname'是不同的東西。 – ceejayoz
另外,一旦你解決了這個問題,那些CSS規則就會被應用到'',而不是'