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.

The code:

<div style="
  border:solid 1px gray;
  cursor:text;
  width:400px;
  padding:0px;"
id="theMainDiv">
  <span id="tag1_outer" style="
    background:#e2e6f0;
    padding-right:4px;
    padding-left:4px;
    border:solid 1px #9daccc;
    font:normal 11px arial;
    color:#3c3c3c
  ">as</span>
</div>

As it renders now, the span is align the bottom-left corner of the div.

share|improve this question

3 Answers

up vote 33 down vote accepted

See my article on understanding vertical alignment. There are multiple techniques to accomplish what you want at the end of the discussion.

(Super-short summary: either set the line-height of the child equal to the height of the container, or set positioning on the container and absolutely position the child at top:50% with margin-top:-YYYpx, YYY being half the known height of the child.)

share|improve this answer
1  
+1 for not using a table. – Blender Dec 5 '10 at 4:18
1  
@Blender Heh, though therein references a third option: display:table-cell; vertical-align:middle (along with a display:table-row parent). :) But no, you can be sure that I would never advocate using HTML table elements for layout. – Phrogz Dec 5 '10 at 4:19
what happens if you padding-top??? a fixed no based on height of the parent. i think your solution works even if the height is dynamic right. – kobe Dec 5 '10 at 4:30
1  
@Kyralessa No, if you don't have a fixed height for the content there exist a couple techniques not yet listed in my page. For example, see: css-tricks.com/centering-in-the-unknown – Phrogz Mar 8 '12 at 21:37
1  
@Phrogz - you should add the last option in css-tricks.com/centering-in-the-unknown to your answer. It's so clean and ie8+! – Jimbo Sep 2 '12 at 2:31
show 1 more comment

At your parent DIV add

display:table;

and at your child element add

 display:table-cell;
 vertical-align:middle;
share|improve this answer

As in a similar question, use display: inline-block with a placeholder element to vertically center the span inside of a block element:

<!doctype html>
<html lang="en">
<head>
 <style type="text/css">
 html, body, #container, #placeholder { height: 100%; }

 #content, #placeholder { display:inline-block; vertical-align: middle; }
 </style>
</head>

<body>
  <div id="container">
    <span id="content">
    Content
    </span>
    <span id="placeholder"></span>
  </div>
</body>
</html>

Vertical alignment is only applied to inline elements or table cells, so use it along with display:inline-block or display:table-cell with a display:table parent when vertically centering block elements.

References:

CSS Horizontal and Vertical Centering

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.