http://jsfiddle.net/nicktheandroid/tVHYg/
When hovering .wrapper, it's child element .contents should animate from 0px to it's natural width. Then when the mouse is removed from .wrapper, it should animate back down to 0px. The .wrapper element should only be as wide as it needs to be (allowing .contents to grow), so .wrapper should grow in width and shrink in width as .contents does. There should be no set width for .contents. I'm using CSS3, but it could be accomplished in jQuery, that would be fine.
The problem: See the JSfiddle
.wrapperis not only as wide as it needs to be.- when
.contentsgrows, when it's almost at it's full width, it jumps down to the next line - When hovering off of
.wrapper,.contentsvanishes, when it should animate down to0px
HTML
<div class="wrapper">
<span>+</span>
<div class="contents">These are the contents of this div</div>
</div>
CSS
.wrapper {
background:#DDD;
padding:10px;
display:inline-block;
height:20px;
width:auto;
}
.contents {
background:#c3c;
overflow:hidden;
white-space:nowrap;
display:inline-block;
width:0%;
}
.wrapper:hover .contents {
-webkit-transition: width 1s ease-in-out;
-moz-transition: width 1s ease-in-out;
-o-transition: width 1s ease-in-out;
transition: width 1s ease-in-out;
width:100%;
}
.contents. – eyelidlessness Oct 22 '11 at 18:25