Reputation: 2670
Is there any way to make a div not extend it's width, but make an image which is visible outside the div in IE8? For example, my div might be 200px wide, but the image 250px wide.
Upvotes: 8
Views: 23551
Reputation: 439
You could position the image 'absolute'?
div > img {position:absolute;}
Upvotes: 9