设置html5中字体的大小,首先需要理解是css中的font属性,通过font-size来改变字体的大小,设置的方式,一般都是通过给这个元素的一个id或者是class来设置,具体看下代码:
<html>
<head>
<style>
#round{
width:400px;
height:200px;
}
#round p{
color:#f00; //设置字体颜色为红色;
}
</style>
</head>
<body>
<div id="round">
<p>测试文字</p>
</div>
</body>
</html>
温馨提示:答案为网友推荐,仅供参考