Question

I want the user to select text (html) inside a div. However doing that will show the selection background in the browser also outside the div.

I can prevent that with (see http://jsfiddle.net/lborgman/aWbgT/)

div { overflow: hidden; }

Is that the way to do it? Or, is there a better way?

Was it helpful?

Solution

add a display: inline-b

div { overflow: hidden; display:inline-block; }

demo

OTHER TIPS

There is a typo in the CSS property :

xoverflow: hidden;

instead of

overflow-x: hidden;

Updated JSFiddle : http://jsfiddle.net/aWbgT/3/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top