Article: Responsive Bootstrap Login Form Tutorial with example in ASP.Net
How to put this login Page center in left to right as well as to top and buttom in any browser like google, mozilla, microsoft edge etc.?
Hi Vanessa,
Use the following class to center the Login Form.
<style type="text/css"> .center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } </style>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.