Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Select multi-line text without overflow the width

Tags:

javascript

css

enter image description here

The up image shows the unwanted red selection out of the yellow area when you select cross lines. I want to select within the yellow part, like the following:

enter image description here

HTML:

<div id="parent">
    <div id="child">
        This is some content... This is a long lonnnnnnng content.
    </div>
</div>

CSS:

#parent {
    width: 200px;
    background-color: #666;
}

#child {
    padding: 50px;
    background-color: #ff0;
}

::selection {
    background-color: #f00;
}

Do you know how to achieve this?

Run code here: http://jsfiddle.net/3AESf/

like image 485
Ovilia Avatar asked Nov 29 '25 05:11

Ovilia


1 Answers

You can use display: inline-block; on #parent to solve it

like image 138
mohammad mohsenipur Avatar answered Nov 30 '25 18:11

mohammad mohsenipur