|
You have given them a fixed width of 80px, so you might want to remove that.
Also, when you remove the width, the border will be too short, because there is a 40px right margin that "pushes the <a> element away". So you might want to remove that too.
Thirdly, when the right margin is gone the border will stretch too far, because you've set the <a> tags to display as blocks, which will make them stretch as far as possible. So remove that too or change it to something else, like inline or inline-block.
That should do the trick!
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
|