#first {
text-align: center;
font-size: 40px;
font-weight: 200;
}
#second {
text-align: center;
font-size: 25px;
font-weight: 50;
}
#third {
text-align: center;
}
<p id="first">One account.All of google</p>
<p id="second">Sign in to continue to Gmail</p>
<div id="login">
<form>
<img src="img.jpg">
<input type="text" name="username" value="Enter your username">
<br>
<input type="password" name="password" value="password">
<br>
<input type="submit" value="Sign in">
<br>
<a href="">Forgot password?</a>
</form>
</div>
<p id="third">Sign in with different account</p>
我無法做出font-weight
下降。我希望#second
id的權重小於#first
id的權重。我使用了font-weight
,但它仍然無法正常工作。
你想讓'#秒'擁有100的權重嗎?你使用的字體是否支持這個重量? – steveax
單獨的字體只支持某些權重。許多字體只支持700的重量。請檢查您使用的字體,並確保它支持您要使用的重量。 – TylerH
使用您正在使用的字體的「半粗體」和「常規」版本來獲得不同的字體重量總是一個好習慣。 –