If you mouse over “one” “two” or “three” you’ll see a menu pops up from each.
When they’re animating up the right hand side seems to be cut off about 10px.
When they’ve finished, suddenly those 10px come back!
Any ideas why this happens?
Thanks
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.
You have some box model errors.
The width of
.upmenu ulshould be110px(100px + 2*5px padding of .upmenu li) and the.upmenu ul lishould have no horizontal padding when usingwidth: 100%.Here an Update
edit
In fact you are using centered text, you could also set the horizontal padding to 0 for
.upmenu liand you will be fine using 100px or 100% width’s.