14/11/2008, 04:43
|
| Colaborador | | Fecha de Ingreso: marzo-2008 Ubicación: Becerril de la Sierra
Mensajes: 958
Antigüedad: 16 años, 10 meses Puntos: 53 | |
Respuesta: controlar sangría en <ul> Aquí la tienes...
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>lista indentada</title>
<style>
* {margin: 0; padding: 0;}
ul {
list-style:none;
margin-left:15px;
}
</style>
</head>
<body>
<ul>
<li>Portada</li>
<li>Invierno</li>
<li>Diciembre a marzo</li>
<li>La chimenea</li>
<li>Deportes de invierno</li>
<li>Contacto</li>
</ul>
</body>
</html>
Aresillo!! |