ok this is my problem. Suppose I have 3 div tags, they all have a width of 100 pixels:
<--- DIV WIDTH ---> Text in div 1 Text in div two, it overflows Text in div three <--- DIV WIDTH --->
Now, I have this css for divs:
width:100px; overflow:hidden;
What I want to do is if the text overflows, it scrolls as a selection, so all the text can be seen if you wait a bit. But I want the selection area to be displayed only when the text overflows.
How can I do it?
Thank you, Tony
source share