25/11/2010, 11:01
|
| | Fecha de Ingreso: noviembre-2010 Ubicación: Lima - Perú
Mensajes: 1
Antigüedad: 14 años Puntos: 0 | |
Respuesta: Como poner el menu en línea Olas, mira amigo también prodias hacerlo con listas y css, creo que es mejor que usar center, ya que como dice zerokilled, esa etiqueta esta en desuso, chequea este código, bueno yo lo arreglaria asi: Código HTML: <?xml version="1.0" encoding="UTF-8"?>
<!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" xml:lang="en" lang="en">
<head>
<title>Menu</title>
<style type="text/css">
a img {
border-style: none;
}
#menu {
margin: 0;
padding: 0;
list-style-type: none;
}
#menu li {
float: left;
margin: 5px;
}
</style>
</head>
<body>
<ul id="menu">
<li><a href=#><img src="b-f.png" width="25px" height="25px"/></li>
<li><a href=#><img src="carta.png" width="25px" height="25px" /></li>
<li><a href=#><img src="casa.png" width="25px" height="25px" /></li>
<li><a href=#><img src="a-f.png" width="25px" height="25px" /></li>
</ul>
</body>
</html> |