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 am trying to vertical center text in anchor. I used line-height and it works, but when the text wraps, the text in the second line gets the line-height... How can I center the text in the anchor without fails like that?

http://jsfiddle.net/y2UYX/1/ - Click on the circle to reveal the other circles and you'll see what I mean.

I would like to support as much as possible browsers. if you add extra properties to support more browsers, please say which line is for which browser by adding comment.

Thank you very much!

share|improve this question

2 Answers

up vote 0 down vote accepted

You can use display:table property for this. write like this:

.SubMenu li {
  margin:50px;
  background:red;
  border-radius:50px;
  height:100px;
  width:100px;
  display:table;
}

.SubMenu a {
   height:100px;
   width:100px;
   display:table-cell;
   text-align: center;
   vertical-align: middle;
}

Check this http://jsfiddle.net/y2UYX/6/

share|improve this answer

You can use element style for that

element.style {
line-height: 13px;
padding-top: 37px;
height: 60px;}
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.