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.
#top-menu ul.menu li {
  background: url(img/back-top-menu2.png);
  width: 70px;
  height: 37px;
  cursor: pointer;
  float: left;
  text-align: center;
}

#top-menu ul.menu li:hover {
  background: url(img/back-top-menu.png);
}

#top-menu ul.menu li a { 
  color: #fff;
  text-decoration: none; 
  list-style-type: none;
  text-align: center;
  margin-left: 20px;
  margin-top: 20px;
}

enter image description here

How to make margin-top works?

share|improve this question

2 Answers

up vote 5 down vote accepted

<a> is an inline element. Add "display:block;" or "display:inline-block;" to it to make it a block level element. Properties like "margin" and "padding" only work on block level elements.

share|improve this answer
And here's the fiddle: jsfiddle.net/BpN9R – Rob W Oct 23 '11 at 21:15
Thank you, it helped me – Vyacheslav Loginov Oct 23 '11 at 21:15

try padding-top instead.

The other way is to add display:block and then give it also a height of 37px, and then add a line-height:37px

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.