HTML interesse |
|
Erm..
.body {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
background-color: #FFFFFF;
height: auto;
width: 700px;
text-align: center;
display: table;
position: absolute;
z-index: auto;
overflow: auto;
padding-top: 10px;
margin-top: 40px;
}
.body { font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; background-color: #FFFFFF; height: auto; width: 700px; text-align: center; display: table; position: absolute; z-index: auto; overflow: auto; padding-top: 10px; margin-top: 40px; }
z-index weg halen, overflow weghalen, position heb je niet nodig. display: table;?!?
probeer even volgende:
.body {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
background-color: #FFFFFF;
height: auto;
width: 700px;
text-align: center;
padding-top: 10px;
margin-top: 40px;
}
.body { font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; background-color: #FFFFFF; height: auto; width: 700px; text-align: center; padding-top: 10px; margin-top: 40px; }
|