input输入框的光标粗细用CSS怎么设置
时间: 2023-02-08 09:56:44 浏览: 587
调整input里面的输入光标大小并兼容主流浏览器
可以使用 CSS 的 `caret-color` 属性来设置输入框光标的颜色。例如:
```
input {
caret-color: red;
}
```
如果要设置光标粗细,可以使用 border-bottom 属性。例如:
```
input {
border-bottom: 2px solid red;
}
```
注意:
- `caret-color` 属性仅在某些浏览器上受支持。
- `border-bottom` 属性会影响到所有的输入框,如果需要单独设置某一个输入框,需要给该输入框设置类名或者ID。
阅读全文