Say I have this
div {
position:absolute;
top:0;
}
#right {
left:50px;
}
#left {
left:0;
}
<div id="right">World</div>
<div id="left">Hello</div>
When I go to select the text from left to right, it behaves in a visually unintuitive way. In chrome at least, the order in which the elements get considered from selection seems to depend on the order of the elements. Is there a way to change that order without changing the order of the elements?