JSFiddle - React, Tailwind, and code Playground

by unloco

HTML

line 1
<br>
line 2

CSS

::selection{
 background:cyan;   
}

br{
    -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   user-select: none;  
}

JavaScript

$(document).bind("selectstart",function(e){
      console.log(e)
})