I have an aspx Login control and I would like to center it on the screen.
How can i accomplish this? I've tried applying text-align: center on it.
I have an aspx Login control and I would like to center it on the screen.
How can i accomplish this? I've tried applying text-align: center on it.
in CSS:
<div style="width: 200px; margin-left: auto; margin-right:auto;">
<!-- contents will be contained in a box that is centered by its parent's box. -->
</div>
#containing_element { //Or body
text-align: center; // For IE
}
#element_to_center {
display: block;
margin: 0 auto; // For everything else
text-align: left; // Assuming you don't want everything else centered.
}