使用CSS使用em设置字体大小
要使用像素设置字体大小,请使用带有font-size属性的 em 单元。
1em = 16px
示例
您可以尝试运行以下代码以使用em设置字体大小
<!DOCTYPE html><html>
<head>
<style>
h1 {
/* 30px/16 = 1.875em */
font-size: 1.875em;
}
</style>
</head>
<body>
<h1>This is demo heading</h1>
<p>This is demo text.</p>
</body>
</html>
以上是 使用CSS使用em设置字体大小 的全部内容, 来源链接: utcz.com/z/335179.html