HTML - MAESTROS!! AYUDA CONFLICTO CSS Y HTML

 
Vista:

MAESTROS!! AYUDA CONFLICTO CSS Y HTML

Publicado por Herni (1 intervención) el 23/01/2001 00:00:00
QUIERO HACER CON HTML Y CSS UN SUMARIO DE ESA MANERA QUE INDICO PERO NO PUEDO ALINEAR EL TEXTO AL MEDIO DE LA CELDA...ES IMPOSIBLE...O NO?? AYUDAA!!!! COPIA EL TEXTO, EDITALO Y PRUEBA ,PLEASE!!!



<html>

<head>
<title></title>

<style type="text/css">
}
A:hover.tool {background-color: #CCCCCC;}
</style>

</head>

<body>

<table border="0" width="125" cellspacing="0" cellpadding="0">

<tr>

<td bgcolor="#003399" height="20" align="left"> <p><a CLASS="tool" STYLE="width: 125px; height: 20px" href="http://"><b><font size="1" face="Verdana">Sumario</font></b></a></p>
</td>
</tr>
</table>
</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:MAESTROS!! AYUDA CONFLICTO CSS Y HTML

Publicado por Mauricio Baeza (10 intervenciones) el 23/01/2001 00:00:00
Solo cambia tu align="center" y el valign="center" para la alineacion vertical, este cambio lo tienes que hacer en la linea donde abres tu celda:

<td bgcolor="#003399" height="100" align="center" valign="center">

el codigo esta probado, con esto debe funcionar
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:MAESTROS!! AYUDA CONFLICTO CSS Y HTML

Publicado por Fede Baeza (8 intervenciones) el 18/02/2001 22:47:04
Esto funciona.
Ahi va ...

<html>

<head>
<title></title>
<style type="text/css">
}
A:hover.tool {background-color: #CCCCCC;}
</style>
</head>

<body>

<table border="0" width="125" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#003399" height="20" align="left"><p align="center"><a CLASS="tool"
STYLE="width: 125px; height: 20px" href="http://"><b><font size="1" face="Verdana">Sumario</font></b></a></td>
</tr>
</table>
</body>
</html>
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar