I am having an issue with selecting text in a flex container that is set to reverse column. The selection I make is incorrect because the browser tries to select from the end of the element, resulting in improper selection.
For example,
<div style="flex-direction: column-reverse; display: flex;">
<div>1 wwww</div>
<div>2 wwww</div>
<div>
3 wwww
<br/>
4 wwww
</div>
<div>5 wwww</div>
</div>
Please try to select from the top left corner to the center of the text.
https://i.sstatic.net/win0kZBY.png
Expected Selection: 5 wwww 3 wwww 4 ww
. Actual Selection: ww
.