Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a menu to my site in ul.buttons. In it I have a title, span.button-title, a sub-title span and a code p. This code must be aligned vertically to the center, half of the title and subtitle.

How to make the autura the tag p (in red) will have the same autura of div.button. I tried height: 100%; but failed.

After her stay with the same height, I would align the tag p in the center, vertical.

See the code.

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

I updated your jsFiddle with some changes.

First, inline-block elements don't consider the vertical size. So it's necessary changing to block and do the horizontal align with float.

Then, elements cannot use height: 100% if their parent has no fixed height. Then a height was set to the button class.

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.