Created
June 8, 2018 03:17
-
-
Save felipecabargas/bf94fc7bbdd8ba64e426d3cf4da9f391 to your computer and use it in GitHub Desktop.
ejemplo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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