0
Please how can centralize my html form using css or html?
When i used float attribute is not working for me.
3 Respuestas
+ 1
Do you mean how to center your form
0
You need to put position absolute;
0
form{
position:relative;
margin:auto;
}
When i used float attribute is not working for me.