Here is the layout I am working with:
<div contenteditable=true>
///
<div contenteditable=false>not editable</div>
///
</div>
One problem I'm facing is that when the non-contenteditable div is the first element on a new line, I can't position the cursor in front of the div using arrow keys or clicking.
I've tried various solutions suggested here but none have worked. They all seem to encounter the same issue. I'm curious about possible ways to solve this problem.