[英]How to change input cursor width and height
如何更改输入 cursor 宽度和高度
<input type="text" value="">
要更改宽度,请使用size
:
<input type="text" id="fname" name="fname" size="80">
并在 css 中使用 class 更改高度:
<input type="text" class="height " name=" item" align="left" />
在 css 中:
.height {
height:30px;
}
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.