Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 7, 2020 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/6702cba5cf4d8381c56ea75e0f033447 to your computer and use it in GitHub Desktop.
Save parzibyte/6702cba5cf4d8381c56ea75e0f033447 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cuadrícula de imágenes - By Parzibyte</title>
<!--
https://parzibyte.me/blog
-->
<style>
* {
box-sizing: border-box;
}
.columna {
float: left;
width: 33%;
padding-right: 5px;
}
.fila::after {
content: "";
clear: both;
display: table;
}
img {
/* Para que sea responsiva */
width: 100%;
}
</style>
</head>
<body>
<div class="fila">
<div class="columna">
<img src="https://picsum.photos/800/600">
</div>
<div class="columna">
<img src="https://picsum.photos/800/600">
</div>
<div class="columna">
<img src="https://picsum.photos/800/600">
</div>
</div>
<div class="fila">
<div class="columna">
<img src="https://picsum.photos/800/600">
</div>
<div class="columna">
<img src="https://picsum.photos/800/600">
</div>
<div class="columna">
<img src="https://picsum.photos/800/600">
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment