I am developing MVC 3 application along with it I am using bootstrap for design. I have created the log in form. I am trying to set it at center position of the screen but some how its not working.
This is my code.
@using (Html.BeginForm("LoginUser","Login",FormMethod.Post))
{
<div class="container-fluid" style="padding-left:0px; margin-top:165px; margin-left:140px;">
<div class="row-fluid">
<div class="span12 roundedDiv offset4" style="width:400px; height:250px;">
...
...
...
Controls...
....
....
</div>
</div>
</div>
}
what to do ?