I have a content editable div where three lines are separated by BR tags.
When I click on the second line, the cursor becomes bigger than that in the first line.
.content {
line-height: 35px;
}
<div class="content" contenteditable="true">
First line<br>
Click here<br>
Last line
</div>
Is there a way to make the cursor size consistent for all the lines?