When I change the page scale (ctrl–+, ctrl–-), is breaking the page layout.
The last item is falling down.
Help me that I need to change in layout to the menu properly scaled.
- Page:
- Screenshot:
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since it seems to really matter to you, here’s an idea.
Try replacing
float: lefton the menu items withdisplay:inline-block(ordisplay:inline-block;*display:inline;zoom:1if you need IE7 support) andwhite-space: nowrapon the parent element.You’ll also have to remove some whitespace in the HTML:
to:
And the same for the rest.
Once you’re done, it should look identical, but the zooming “problem” should be fixed.