Here's a scenario I'm facing: Let's say I have three div tags, each 100 pixels wide:
<--- DIV WIDTH --->
Text in div 1
Text in div two, it overflows
Text in div three
<--- DIV WIDTH --->
Currently, I've set the following CSS for the divs:
width:100px;
overflow:hidden;
I want the text to scroll like a marquee if it overflows so all the content can be seen after waiting a bit. However, I only want the marquee effect to show when the text actually overflows.
Can anyone advise on how to achieve this?
Thanks, Tony