.text1 {
width:30px/* 这里是输入框的长度 */
height:100px /* 这里是输入框的宽度 */
position:relative /* 这里规定输入框的定位类型 */
top:100px /* 这里规定输入框于原位置向下偏移100px */
left:300px /* 这里规定输入框于原位置向右偏移300px */
}
<html>
<body>
<input type="text" class="text1 value="text1" />
</body>
</html>
这是文本框,可以使用CSS来调整边框宽度:
<input type="text" style="border:3px solid #369" />其中3px为边框宽度,solid为边框样式,#369为边框颜色。