Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/02/2007, 04:16
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: Estilos en listas

Se puede, usando un pequeño truquito:

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Tama&ntilde;os de lista</title>
  <meta http-equiv="Content-Type"
 content="text/html; charset=iso-8859-1" />
  <style type="text/css">
ul { list-style-type: decimal;
font-size: 34px;
font-family: Franklin Gothic Book;
}
span { font-size: 16px;
}
  </style>
</head>
<body>
<ul>
  <li><span>Primer item de la lista</span></li>
  <li><span>Segundo item de la lista</span></li>
</ul>
</body>
</html>
Y valida perfectamente.

Mikel.