Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/04/2017, 15:33
ut261c
 
Fecha de Ingreso: noviembre-2014
Ubicación: peru-lima
Mensajes: 32
Antigüedad: 9 años, 5 meses
Puntos: 2
Respuesta: dichosos puntos suspensivos en div

<!DOCTYPE html>
<html lang="es">
<head>

<style>
*{
margin:0;
}
body>div{
width:300px;
margin:0 auto;
background:blue;
}
div>div{
float:left; //elige el que quieras
width:calc((300px)/3);
}
</style>

</head>
<body>
<div>
<div>
<a href="https://www.google.com.pe">
<img src="img/icon.jpg">
</a>
</div>

<div>
<a href="https://www.google.com.pe">
<img src="img/icon.jpg">
</a>
</div>

<div>
<a href="https://www.google.com.pe">
<img src="img/icon.jpg">
</a>
</div>
</div>
</body>
</html>