html - Center a div both horizontal and vertical having a width in % -
i have login page , want center both horizontally , vertically. have written code it's not working.
html:
<div class='loginmaindiv'> <div class="logintable"> </div> </div>
css:
.loginmaindiv { height:550px; width:100%; text-align:center; } .logintable { display: block; margin-left: auto; margin-right: auto; }
this example of can do:
play around margin of .logintable
until fits requirements.
used css:
.loginmaindiv { height: 550px; text-align:center; background: #ffdddd; /* clarity */ } .logintable { width: 75%; margin: 50% auto; background: #ddddff; /* clarity */ }
both background: #...
statements can deleted without consequences.
Comments
Post a Comment