26/03/2007, 11:22
|
| (Desactivado) | | Fecha de Ingreso: mayo-2004 Ubicación: Monterrey, MX
Mensajes: 2.667
Antigüedad: 20 años, 6 meses Puntos: 2 | |
Re: Establecer espaciados diferentes de texto back to basics...
<!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>
<title>Test</title>
<style type="text/css">
ul {
float: left;
display: inline;
}
ul li {
display: inline;
padding-right: 20px;
}
p {
text-align: right;
}
</style>
</head>
<body>
<ul>
<li>item 1</li>
<li>tu viñeta</li>
<li>item 2</li>
<li>tu viñeta</li>
<li>item 3</li>
</ul>
<p>®Airline Accounting... All rights reserved etc.</p>
</body>
</html> |