I am displaying number of boxes in a row with fix height and width, generated from <li> tags. now I need to align the text in the vertical center. The CSS vertical-align has no impact, maybe I am missing something???

I am not looking for tricks using (margin, padding, line-height), these will not work because some text are long and will break into two lines.

Please find the actual code:

CSS code

ul.catBlock{width:960px; height: 270px; border:1px solid #ccc; }
ul.catBlock li{list-style: none; float:left; display:block; text-align: center; width:160px; height: 100px;}
ul.catBlock li a{ display: block;  padding: 30px 10px 5px 10px; height:60px;}

HTML code

<ul class="catBlock">
 <li><a href="#">IP Phone</a></li>
 <li><a href="#">Dual SIM Switch Server</a></li>
 <li><a href="#">IP PBX</a></li>
</ul>
link|improve this question
you may need to provide more information. Are the boxes of the same height? Are you aligning the text inside the boxes in the li? "because some text are long...two lines" ??? May be a screenshot or a fiddle would help. – KMC Dec 17 '11 at 9:54
I Just tried to post a screenshot but it does not allow me, as my account is new. – AK4668 Dec 17 '11 at 15:15
feedback

4 Answers

i managed to do something similar to what you're asking. defining the parent as "display: table" and the element itself with "vertical-align:middle" & "display:table-cell" worked for me.

link|improve this answer
1  
+1 for using display table/table-cell. Seems not many people are aware of their existence. – powerbuoy Dec 25 '11 at 0:09
This is from W3CSchool... Note: The values "inline-table", "run-in", "table", "table-caption", "table-cell", "table-column", "table-column-group", "table-row", "table-row-group", and "inherit" is not supported in IE7 and earlier. IE8 requires a !DOCTYPE. IE9 supports the values. – AK4668 Dec 25 '11 at 5:39
1  
@AK4668, you can't win them all. – Asaf Chertkoff Jan 9 at 12:54
feedback

line-height is how you vertically align text. It is pretty standard and I don't consider it a "hack". Just add line-height: 100px to your ul.catBlock li and it will be fine.

In this case you may have to add it to ul.catBlock li a instead since all of the text inside the li is also inside of an a. I have seen some weird things happen when you do this, so try both and see which one works.

link|improve this answer
I have used line-height initially but when the content is long it will break into 2 lines and let's say 100px gap each line and wil make it look worse. is there any other way? – AK4668 Dec 17 '11 at 15:56
I think there is a way to have vertical-align: middle if you have display: table-cell. I have never used it though. Take a look here: phrogz.net/css/vertical-align/index.html – Logan Serman Dec 17 '11 at 16:34
feedback

Line height is extremely tricky to get around, here is a slide to help you get started with this concept

Line Height

link|improve this answer
feedback

To horizontally center your <li> elements, you need to remove the float and set them to display: inline-block so they display as inline elements, and then add text-align: center to your containing <ul> element to center them within the container.

Vertically centering is a bit more challenging, but is significantly easier because you are setting fixed heights. To vertically center your fixed-height <li> elements within your <ul> container, you should use margins. The way to vertically center elements within their parents is to apply a margin top using the following equation:

margin-top: {container height}/2 - {element height}/2

It's also a good idea to add vertical-align: middle to your inline-elements (in this case, your <li> elements) to ensure that they all line up with each other once the margin has been applied, even if one of your elements is taller than the other. Keep in mind that the vertical-align property vertically aligns elements relative to their siblings, not the container.

Here is your modified CSS:

ul.catBlock {
    list-style: none; 
    text-align: center;   
    width: 960px; 
    height: 270px; 
    margin: 0;
    border: 1px solid #ccc; }
ul.catBlock li {
    background-color: red;
    text-align: center;
    width: 160px; 
    height: 100px;
    margin: 85px 0 0; /* 270/2 - 100/2 */
    vertical-align: middle;
    display: inline-block; }
ul.catBlock li a { 
    height: 60px; /* 95 - 30 - 5 */
    padding: 30px 10px 5px 10px;
    display: block; }

I added a background-color to make the vertical-centering more visible.

Preview: http://jsfiddle.net/Wexcode/utGVt/

link|improve this answer
Fantastic, it makes a good sense. //I can't vote your answer now because my min reputation should be 15. – AK4668 Dec 23 '11 at 7:01
Glad to hear it helped. If you feel like this answers your question, please accept it :) – Wex Dec 23 '11 at 20:54
feedback

Your Answer

 
or
required, but never shown

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