Bruno67v
Bruno67v

Reputation: 13

overflow:hidden does not work

Here's my code: http://jsfiddle.net/ybCN5/

I do not know why it does not work. I've tried different ways and still cannot find a solution. I'm going to use this box for jquery sliding.

Upvotes: 0

Views: 489

Answers (1)

John Stimac
John Stimac

Reputation: 5493

Your position:absolute; is causing the element(.sldtitulo) to escape its parent. You need to give the parent that you want it to not overflow a position with a value that is not static.

Upvotes: 1

Related Questions