Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a limited area to show a long text. It should be wrapped with ellipsis. When you mouse over it, it should be scrolled until end of it so I came up with this but I have some problems.

  1. It doesn't work on Opera Browser.
  2. It uses static width property.

    div.content:hover {
    
       width:742px;
    
    }
    
  3. Even text is shorter; it scrolls in a static duration.

How can I solve this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.