HTML DOM fontSize 属性
JavaScript基础 2022-06-08 14:51:17小码哥的IT人生shichen
HTML DOM fontSize 属性
定义和用法
fontSize 属性设置元素的字体大小。
语法:
Object.style.fontSize=value
可能的值
值 | 描述 |
---|---|
|
把字体的尺寸设置为不同的尺寸,从 xx-small 到 xx-large。 默认值:medium。 |
smaller | 把 font-size 设置为比父元素更小的尺寸。 |
larger | 把 font-size 设置为比父元素更大的尺寸。 |
length | 把 font-size 设置为一个固定的值。 |
% | 把 font-size 设置为基于父元素的一个百分比。 |
实例
本例改变文本的字体大小:
<html>
<head>
<script type="text/javascript">
function setFontSize()
{
document.getElementById("p1").style.fontSize="larger";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setFontSize()"
value="Change font-size" />
</body>
</html>
TIY
完整实例【fontSize - 改变文本的字体大小】:
<html>
<head>
<script type="text/javascript">
function setFontSize()
{
document.getElementById("p1").style.fontSize="larger";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setFontSize()" value="Change font-size" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html