Is it possible to restrict text selection to single tags? When using absolute position, texts seem to be marked across multiple elements, e.g. in the following example:
<span style="position: absolute; left: 171px;"><span>TextBlock</span></span>
<div style="position: absolute; left: 0px;">
<input type="radio"></input><label>RadioButton</label>
</div>
<div style="position: absolute; left: 607px; top: 100px">
<input type="radio"></input><label>RadioButton</label>
</div>
If you double-click the text of one of the controls, those text of previously added items are selected as well. Is there any way to restrict this? And this excludes disabling selection completely since it is a must-have feature.
I also tried user-select (specifically the webkit-version for Chrome) but unfortunately to no avail.