I currently have three images placed horizontally one after another on a webpage. When the user zooms in sufficiently, the page layout bumps the third image to be placed below the first two images. I would prefer that the image simply 'disappears' into the edge of the page so that the layout is maintained. How can I specify this behavior? Thank you.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Put into container and prevent wrapping

<div style="white-space: nowrap;">
    <img ... />
    <img ... />
    <img ... />
</div>

It is of course wiser to use CSS classes instead of inline styles.

And if you'd like to keep container unscrollable, you can set its overflow style to hidden.

Here's a JSFiddle example that sets both styles on containing div element so third element (insetad of images I've used span but that's not relevant) simply disappears over the edge. If you try to set span width to fixed pixel size and zoom the page in you will see that elements just disappear over the edge.

link|improve this answer
I don't think this is much of a solution to keeping the entire website correctly structured through resizing. I think it's a good extra measure to take however, in case my solution proves insufficient in weird browser zoom situations – Codemonkey May 17 '11 at 16:21
feedback

Set a fixed width to body or a site wrapper div. That way the size of the browser should have no effect on the elements of your site.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.