在css中設置字體加粗的方法:1.創建p標簽;2.使用font-weight屬性設置字體加粗;
在css中設置字體加粗的方法
1.首先,在頁面中創建兩個p標簽,并添加文字用于對比;
<!DOCTYPE html><html>
<head>
<meta charset="utf-8" />
<style></style>
</head>
<body>
<p>測試文本</p>
<p class="nav">測試文本</p>
</body>
</body>
</html>
2.p標簽創建好后,使用font-weight屬性即可設置字體的粗細;
<!DOCTYPE html><html>
<head>
<meta charset="utf-8" />
<style>
.nav{
font-weight: 900;
}
</style>
</head>
<body>
<p>測試文本</p>
<p class="nav">測試文本</p>
</body>
</body>
</html>
效果: