I've got a content area with a subcontent that's floated right inside. I want the subcontent to overlap the right edge just a bit. I also want the content area to be as tall as the subcontent which experience tells me I need to use overflow:auto to clear the float.
BUT I can't use overflow auto if I want the subcontent overlapping the edge can I? So I set overflow-x and overflow-y separately. Overflow-x:visible to show the overlap, & overflow-y: audo. But this has unexpected results!
Here's an example. I thought the subcontent would be visible, but it's being chopped off: http://jsbin.com/yigelepigi/2/edit?html,css,output
Is it possible to do what I want using overflow-x and y?