01/02/2007, 17:25
|
| Colaborador | | Fecha de Ingreso: octubre-2006 Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 18 años, 3 meses Puntos: 280 | |
Re: como introduzco una tabla en css?? Aupa, juanitTo.
¿Te acuerdas del enorme código que has puesto? Prueba esto es tu navegador:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=ISO-8859-1" />
<title>Con CSS</title>
<style type="text/css">
#menu { border: 1px solid rgb(255, 102, 0);
width: 120px;
font-family: Verdana;
text-align: center;
background-color: rgb(0, 0, 0);
}
a { border-top: 1px solid rgb(255, 255, 255);
text-decoration: none;
color: rgb(255, 255, 255);
font-size: 16px;
display: block;
width: 100%;
}
a:hover { background-color: rgb(0, 232, 0);
}
</style>
</head>
<body>
<div id="menu">
<a href="http://www.webmastersgratis.com/contenidos/foros/index.php">Trucos
javascrip</a>
<a href="http://www.webmastersgratis.com/contenidos/chats/index.php">Uso
de frames</a>
<a href="http://www.webmastersgratis.com/contenidos/imagenes/index.php">Condiciones
de uso</a>
<a href="http://www.webmastersgratis.com/contenidos/encuestas/index.php">chat</a>
<a href="http://www.webmastersgratis.com/contenidos/titulares/index.php">Heavy
Metäl</a>
<a href="http://www.webmastersgratis.com/contenidos/intercambio/index.php">Acceso
a tu pagina por clave con javascrip</a>
<a href="http://www.webmastersgratis.com/contenidos/altabuscadores/alta-en-buscadores-gratis.php">Heavy
Metäl</a>
<a href="http://www.webmastersgratis.com/contenidos/altabuscadores/index.php">Heavy
Metäl</a>
<a href="http://www.webmastersgratis.com/contenidos/posicionamientobuscadores/index.php">Heavy
Metäl</a>
<a href="http://www.webmastersgratis.com/contenidos/posicionamientobuscadores/informe-posicionamiento.php">Heavy
Metäl</a>
<a href="http://www.webmastersgratis.com/ganardinero/web/index.php">Heavy
Metäl</a>
</div>
</body>
</html>
Ya contarás.
Mikel. |