Skip to content

Instantly share code, notes, and snippets.

@felipecabargas
Created June 8, 2018 03:17
Show Gist options
  • Save felipecabargas/bf94fc7bbdd8ba64e426d3cf4da9f391 to your computer and use it in GitHub Desktop.
Save felipecabargas/bf94fc7bbdd8ba64e426d3cf4da9f391 to your computer and use it in GitHub Desktop.
ejemplo
<html>
<head>
<title>Hola</title>
</head>
<body>
<style>
.cajachica{
width: 15%;
margin-right: 4%;
height: 100px;
float: left;
background: red;
border: 1px solid black;
}
.cajagrande{
width: 50%;
height: 100px;
float: left;
background: blue;
}
</style>
<div class="contenedor">
<div class="cajachica">
Hola
</div>
<div class="cajachica">
Hola
</div>
<div class="cajachica">
Hola
</div>
<div class="cajachica">
Hola
</div>
<div class="cajachica">
Hola
</div>
<div class="cajagrande">
Hola
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment