I'm trying to control the caret size in a html textarea. The size seems to default to the line height, is there a way to manually control it?
Html – How to control cursor/caret size with CSS
csshtml
Related Question
- Html – How to give text or an image a transparent background using CSS
- Javascript – How to modify the URL without reloading the page
- Css – CSS parent selector
- Html – How to style a
- HTML 5: Is it
,
, or - Html – Change a HTML5 input’s placeholder color with CSS
- Css – Transitions on the CSS display property
- Css – How to vertically align an image inside a div
Best Solution
There isn't any way to change how the caret looks in a textarea. If you want to do that, you'll have to use something other than a textarea, such as a div or a canvas element and control everything with JavaScript.