<div contenteditable="true" style="display:flex">
<p>Some text</p>
</div>
This adds ugly resize border on the P tag. I want to keep this field editable. I don't want to disable it using mscontrolselect event Any solution?
<div contenteditable="true" style="display:flex">
<p>Some text</p>
</div>
This adds ugly resize border on the P tag. I want to keep this field editable. I don't want to disable it using mscontrolselect event Any solution?
` tag around the text, then the resize border will disappear. Besides these two ways, it seems there's no other ways to get rid of the resize border.
– Yu Zhou Aug 31 '20 at 03:32