Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code:

<ul>
   <li><a>my link 1</a></li>
   <li><a>my link 2</a></li>
   <li><a>my link 3</a></li>
</ul>

When I apply padding to <a> like so:

ul {
  list-style: none;
  margin: 30px 0 0 2.6em;
}
ul li {
  height: 41px;
  width: 196px;
  background: url(images/image.png) no-repeat; 
  position: relative;
}
ul li a {
  padding-top: 5px;
}

The padding works but it collapses and goes through the top edge of <li> instead of pushing the <a> down. How ca I resolve this?

share|improve this question
Have you tried using margin-top: 5px; instead? This sounds more like what you would want anyway. – George Jul 5 '11 at 16:10
1  
Can you show all the css for that section of code? – Jason Gennaro Jul 5 '11 at 16:11
Yup I tried it, didn't work either. But that isn't what I need because it won't fill out the whole area of li to be clickable. Even tried wrapping li and a with borders. – jilseego Jul 5 '11 at 16:12

3 Answers

up vote 5 down vote accepted

you should give your "a" display:inline-block

anchors are "inline" by default and won't show padding properly.

jsFiddler demo: http://jsfiddle.net/PqajF/3/

share|improve this answer
works perfectly thanks! – jilseego Jul 5 '11 at 16:22
1  
@jilseego: Thanks don't work. You have to accept the answer. :) – Robert Koritnik Jul 6 '11 at 10:27
ul li a
{
    padding-top: 5px;
    display: inline-block;
}
share|improve this answer

You need to omit a

See http://jsfiddle.net/nPXyN/

<span>padding</span>
<ul id="paded">
    <li><a>my link 1</a></li>
    <li><a>my link 2</a></li>
    <li><a>my link 3</a></li>
</ul>
<span>margin</span>
<ul id="margined">
    <li><a>my link 1</a></li>
    <li><a>my link 2</a></li>
    <li><a>my link 3</a></li>
</ul>



ul#paded li {
    padding-top: 5px;
    border: 1px solid black;
}

ul#margined li {
    margin-top: 5px;
    border: 1px solid black;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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