Saludos,
Necesito utilizar dos estilos de tablas, no muy diferentes, una la necesito con dos bordes y la otra sin bordes, estoy usando esto:
Código:
table.moduletable {
margin: 0px 0px 0px 0px;
width: 85%;
border-left: solid 0px #000000;
border-right: solid 1px #9C9ACE;
border-top: solid 0px #000000;
border-bottom: solid 1px #9C9ACE;
}
table.moduletable th {
font: bold 11px Verdana, Arial, Helvetica, sans-serif;
color: #FFFFFF;
white-space: nowrap;
background-color: #4F4F9D;
border: 0px solid #9C9ACE;
height: 16px;
width: auto;
padding: 2px;
text-align: center;
}
table.moduletable td {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: normal;
}
La tabla me sale bien, sin embargo, necesito usar otra tabla distinta, que sería así:
Código:
table.moduletablex {
margin: 0px 0px 0px 0px;
width: 95%;
border-left: solid 0px #000000;
border-right: solid 0px #9C9ACE;
border-top: solid 0px #000000;
border-bottom: solid 0px #9C9ACE;
}
table.moduletablex th {
font: bold 11px Verdana, Arial, Helvetica, sans-serif;
color: #FFFFFF;
white-space: nowrap;
background-color: #4F4F9D;
border: 0px solid #9C9ACE;
height: 16px;
width: auto;
padding: 2px;
text-align: center;
}
table.moduletablex td {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: normal;
}
La tabla ya me aparece sin bordes, tal como la quiero, pero no me respeta el TH ni el TD...
¿Qué estoy haciendo mal?
¿Cómo hago para que me los respete?
Gracias por la ayuda