I don't seem to be able to do a vertical center on the table contained in this <div> </div> tag. What needs to be done?
Code:
<div id="container" style="height:90%; width:95%; white-space:nowrap; border:5px solid red;margin: auto;"> <table style="margin: auto; vertical-align:center; border:2px solid blue;"> <tbody> <tr> <td align="right" >Initials:</td> <td><input type="text" name=""></td> </tr><tr> <td>Engineer's Name:</td> </tr><tr> <td align="right" >First Name:</td> <td><input type="text" /></td> </tr><tr> <td align="right" >Last Name:</td> <td><input type="text"/></td> </tr> </tbody> </table> </div>
Comment