I\'ve got a height and width, and overflow:hidden so that specfic inner images are clipped
I know this is an old post, but this can be done (at least in Chrome). I figured this out about two years ago and it's saved me a couple times.
Set the child to have position of fixed and use margins instead of top and left to position it.
#wrapper {
width: 5px;
height: 5px;
border: 1px solid #000;
overflow: hidden;
}
#parent {
position: relative;
}
button {
position: fixed;
margin: 10px 0px 0px 30px;
}
Here is an example: http://jsfiddle.net/senica/Cupmb/