I have the following code, and my table(the table contains the two text lines next to the image) just does not want to align vertically in the middle of the div. What to do?Please note that I used a table for my two text lines(laminin beauty and perfectly put together), since they have different styles and I want them justified, so I put align= center on their td tags... (justify text property only works when text is in the same tag...) . My website: http://lamininbeauty.co.za/index2.html HTML:\[code\] <div id="header"> <img class="massage" src="http://stackoverflow.com/questions/11549251/images/massage.png" border="none" alt="face massage" /> <div class="headerDiv"> <table margin="0" padding="0"> <tr><td align="center" class="headerText1">Laminin Beauty</td></tr> <tr><td align="center" class="headerText2">"Perfectly put together"</td></tr> </table> </div> </div>\[/code\]CSS:\[code\]#header{ width: 100%; height: 100px; background: #000000;}#header img{ margin-left: 50px; vertical-align: middle; display: inline-block; float: left;}#header div.headerDiv{ display: table-cell; margin-left: 80px; vertical-align: middle;}.headerText1{ color: #fff; font-family: impact; font-size: 32px; text-decoration: underline;}.headerText2{ color: #ee00ee; font-family: century gothic; font-size: 24px;}\[/code\]Thank You!