Reputation: 13
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
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