This problem is difficult to describe so i created a jsfiddle. You can see that the final item in the menu sticks out to the right, unlike the other menu items. This happens with other menu items if they take up more than one line.
Share
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.
This is because the
<a>element isdisplay: inline;by default, so the border only appears at the end of the second line. Change#sidebar_all_pages atodisplay: blockand the problem is solved. It unmasks another one though: The negative margin on#sidebar_all_pages liis too big. Reduce it to-10pxto solve that one.