I have a div that contain my form (as a blue box). I need center that div in the screen for every browser. I searched about this and people said that if I put margin as auto it should work.
But no, this put my box (the div) at the left side in every browser.
<HTML>
..
...
<body>
<div id="questionare">
<form .....
....
....
</form>
</div>
</body>
...
....
</HTML>
and on my CSS I tried things like:
#questionare{
margin: 0 auto ;
position:relative;
width: 300px;
text-align: left;
background:rgb(127, 177, 198);
padding: 88px 79px 29px;
border-radius: 10px;
box-shadow: 0px 5px 12px rgba(0,0,0,0.4);
-webkit-border-radius: 10px;
-moz-border-radius: 10px; -khtml-border-radius: 10px;
-webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 5px 12px rgba(0, 0, 0, .4);
-khtml-box-shadow: 0 5px 12px rgba(0, 0, 0, .4);
behavior: url(/PIE.htc);
}
-or-
#questionare{
margin-left: auto ;
margin-right: auto ;
position:relative;
width: 300px;
text-align: left;
background:rgb(127, 177, 198);
padding: 88px 79px 29px;
border-radius: 10px;
box-shadow: 0px 5px 12px rgba(0,0,0,0.4);
-webkit-border-radius: 10px;
-moz-border-radius: 10px; -khtml-border-radius: 10px;
-webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 5px 12px rgba(0, 0, 0, .4);
-khtml-box-shadow: 0 5px 12px rgba(0, 0, 0, .4);
behavior: url(/PIE.htc);
}
Form style is empty
form{
}
What is the solution?
