<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>css字体属性之文字大小</title>
<style>
body{
font-size: 10px;
}
/* 标题标签比较特殊需要单独指定文字大小 */
h2 {
font-size: 20px;
}
.bold{
font-weight: 700;
/* 这个700后面不要跟单位 等价于bold都是加粗的效果
实际开发中,我们更提倡使用数字 表示加粗或者变细 */
/* font-weight: 400=normal */
}
</style>
</head>
<h2>pink的秘密</h2>
<p>那一抹众人中最漂亮的颜色,</p>
<p>优雅,优雅,又那么清澈。</p>
<p>前端总是伴随着困难和犯错,</p>
<p>静心,坦然,攻克一个又一个。</p>
<p class="bold">拼死也要克服它,</p>
<p>这是pink的密秘也是老师最终的嘱托。</p>
</body>
</html>