Jump to content

vertical-align SOLVED with thanks in the last post


niche

Recommended Posts

Why isn't this aligning vertically?

<?phpecho '<div style="float:left;width:60px;height:60px;vertical-align:middle;background-color:blue;">';echo '<p style="vertical-align:middle;margin:0px;text-align:center;overflow:auto;font-weight:bold;font-size:16px;">Save 6.24</p>';echo '</div>'; //closes headline div?>

in-line css for question convenience.

Link to comment
Share on other sites

Vertical-align

property, is ment for inline elements, just like text-align property, is ment for inline elements too.EX:

<img src='image.gif' style='vertical-align:middle'/>

If you want you® code to work, you must add:

 display:inline-block; or display:table-cell;

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...