05/10/2006, 09:57
|
| | | Fecha de Ingreso: octubre-2001
Mensajes: 1.376
Antigüedad: 23 años, 2 meses Puntos: 0 | |
- El 2º <tr class=filas_tabla_clientes"> es el que hace que cada fila cambie de color en su clase :hover pero no se ve en IE.
- También en IE los bordes se ven más gordos que en Firefox.
Haber si pueden solucionarme estos 2 temas. Cita:
<table width="990" border="0" align="center" cellpadding="0" cellspacing="0" class="tabla_clientes">
<tr class="filas_tabla_clientes">
<th width="156" height="25" class="tit_filas_tabla_clientes">Nombre</span></th>
<td width="232" class="tit_filas_tabla_clientes"><center>
<strong> Apellidos </strong>
</center></td>
<td width="140" class="tit_filas_tabla_clientes"><center>
<strong> Fecha de Alta </strong>
</center></td>
<td width="124" class="tit_filas_tabla_clientes"><center>
<strong> Teléfono </strong>
</center></td>
<td width="176" class="tit_filas_tabla_clientes"><center>
<strong> Población </strong>
</center></td>
<td width="151" class="provincia_tit_filas_tabla_clientes"><center >
<strong> Provincia </strong>
</center></td>
</tr>
<%do while not rs.EOF %>
<tr class="filas_tabla_clientes">
<th width="156" height="25" class="celdas_clientes"><center>
<a href="ficha_cliente.asp?id_cliente=<%=rs("id_clien te")%>&id_franquiciado=<%=Request.QueryString( "id_franquiciado")%> class="celdas_clientes"">
<%response.write(rs("nombre_cliente"))%>
</a>
</center> </th>
<td width="232" class="celdas_clientes"><center>
<%response.write(rs("apellidos_cliente"))%>
</center> </td>
<td width="140" class="celdas_clientes"><center>
<%response.write(rs("fecha_alta"))%>
</center> </td>
<td width="124"class="celdas_clientes"><center>
<%response.write(rs("telefono_cliente"))%>
</center> </td>
<td width="176"class="celdas_clientes"><center>
<%response.write(rs("poblacion_cliente"))%>
</center> </td>
<td width="151" class="provincia_clientes"><center>
<%response.write(rs("provincia_cliente"))%>
</center> </td>
</tr>
<% rs.MoveNext
Loop
%>
</table> Los estilos: Cita: .links_activos {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
color: #03488D;
text-decoration: none;
font-weight: bold;
}
a.links_activos:link { font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
color: #03488D;
text-decoration: none;
font-weight: bold;}
a.links_activos:visited { font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
color: #03488D;
text-decoration: none;
font-weight: bold;
}
a.links_activos:hover { font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
color: #860205;
text-decoration: none;
font-weight: bold;
}
a.links_activos:active { font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
color: #03488D;
text-decoration: none;
font-weight: bold;
}
.links_noactivos {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
color: #999999;
text-decoration: none;
font-weight: bold;
}
.tabla_clientes {
border-right: 1px solid #000000;
border-top: 1px solid #000000;
border-left: 1px solid #000000;
}
.filas_tabla_clientes {
background-color: #C1DAFF;
border-right: 1px solid #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #042571;
}
.filas_tabla_clientes:hover {
background-color: #FFFFCC;
}
.tit_filas_tabla_clientes {
background-color: #BFC1C4;
border-right: 1px solid #000000;
border-bottom: 1px solid #000000;
}
.provincia_tit_filas_tabla_clientes {
background-color: #BFC1C4;
border-bottom: 1px solid #000000;
}
.celdas_clientes {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
border-right-width: thin;
border-right-style: solid;
border-right-color: #000000;
border-bottom-width: thin;
border-bottom-style: solid;
border-bottom-color: #000000;
text-decoration: none;
text-align: center;
}
.provincia_clientes {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
border-bottom-width: thin;
border-bottom-style: solid;
border-bottom-color: #000000;
text-decoration: none;
text-align: center;
}
.cabecera_clientes {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
border-bottom-width: thin;
border-bottom-style: solid;
border-bottom-color: #000000;
text-decoration: none;
text-align: center;
} |