使用内部 CSS 样式表
在 HTML 文件的<head>标签内定义 CSS 样式来选择type为number的输入框并设置其大小。例如:
html
<!DOCTYPE html>
<html>
<head>
<style>
input[type="number"] {
width: 200px;
height: 35px;
}
</style>
</head>
<body>
<input type="number" id="num1" oninput="calculate()" placeholder="输入帽经:(毫米)">
</body>
</html>
上述代码中,input[type="number"]是一个属性选择器,它选中了所有type为number的输入框,然后设置其宽度为 200 像素,高度为 35 像素。