Greetings once again
I have this form created in my page, and I pretend it to be fully tableless however, margins in IE7 aren't equal to the ones in other browsers. Also, adding another problem to the party, Firefox 3.5 (the only one different from 3.6, which renders correctly, that i've tested the page on) cuts the font in the input fields, being able to see just half of it.
You can see the page in the following link:
http://fantasma98.byethost12.com/restaurante/encomendas.php
here's the CSS for the form
form
{
margin:0;
padding:0;
}
.form_enc
{
width:375px;
height:365px;
float:left;
border: 20px solid #FFFFFF;
}
.form_enc input, .form_enc textarea
{
font-family:'aller_i';
font-size:13px;
overflow:hidden;
resize: none;
}
.form_enc_nome input,.form_enc_ent input
{
box-sizing: content-box; -webkit-box-sizing: content-box; -moz-box-sizing: content-box;
width:362px;
height:10px;
border:none;
background-color:#e0e2e1;
margin:1px;
font-family:'aller_bi';
font-size:13px;
overflow:hidden;
color:#48554c;
}
.form_enc_loc input,.form_enc_email input, .form_enc_data input, .form_enc_telf input
{
box-sizing: content-box; -webkit-box-sizing: content-box; -moz-box-sizing: content-box;
width:175px;
height:10px;
float:left;
background-color:#e0e2e1;
border:none;
margin:1px;
font-family:'aller_bi';
font-size:13px;
overflow:hidden;
color:#48554c;
}
.form_enc_coments textarea
{
box-sizing: content-box; -webkit-box-sizing: content-box; -moz-box-sizing: content-box;
width:362px;
height:250px;
border:1px solid #FFFFFF;
background-color:#e0e2e1;
font-family:'aller_bi';
color:#48554c;
font-size:13px;
overflow:hidden;
resize:none;
}