禁止插入光标,去掉标签左右两边出现的竖线 竖杠 |

链接: https://developer.mozilla.org/zh-CN/docs/Web/CSS/caret-color

caret-color 属性用来定义插入光标(caret)的颜色,这里说的插入光标,就是那个在网页的可编辑器区域内,
用来指示用户的输入具体会插入到哪里的那个一闪一闪的形似竖杠 | 的东西。


<style>
body{
caret-color: rgba(0,0,0,0) // 让光标透明
}
input,textarea{
caret-color: #000; // input,textarea标签光标黑色
}
</style>


原文地址:https://www.cnblogs.com/xushan03/p/15381114.html