Les adjunto mi hoja de estilos:
Código:
su uso en un html seria este.conten{ /*contenedor principal*/
width:100%;
background-color:#999999;
border:1px solid;
position:relative;
}
.contenesq{ /*columna izquierda*/
position:relative;
float:left;
margin:1%;
padding:1%;
width:54%;
border:1px solid;
}
.contendre{ /*columna derecha*/
position:relative;
margin: 1% 0% 0% 58%;
padding:1%;
width:34%;
border:1px solid;
}
.contendre input{
text-align:center;
width:50px;
}
.contendre form{
margin:0;
padding:0;
}
.tableft{ /*estilo de la tabla*/
margin-bottom:2px;
background:#FF6600;
width:90%;
text-align:center;
border:1px;
border-style:solid;
border-color:#000000;
}
.tableft td{
border: 1px solid;
height:30px;
}
Código:
Agradecer a todos su atención i ayuda. Gracias.<div class="conten"> <div class="contenesq"> <table class="tableft" align="center" > <tr> <td >as</td> <td>sa</td> <td>da</td> <td>ta</td> </tr> </table> </div> <div class="contendre"> <table class="tableft" align="center" > <tr> <td ><input type="text" name="partit1_1"></td> <td><input type="text" name="partit1_x"></td> <td><input type="text" name="partit1_2"></td> </tr> </table> </div> </div>
EDIT: el float:left afecta al estilo en ie???

