<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
* {
margin:0
padding:0
}
#text1{ color:red font-size:20px margin:100px}
</style>
</head>
<body>
<input type="text" value="我是测试文本" id="text1" />
</body>
</html>
单独设置CSS样式 改变文字大小 font-size 如上参考
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<title>景安网络</title>
<style type="text/css">
span{font-size: 19px}
</style>
</head>
<body>
<span>文字大小</span>
</body>
</html>
css中我们可以使用font-size来设置文字的大小