Last active
August 29, 2015 13:56
-
-
Save lavaldi/9012944 to your computer and use it in GitHub Desktop.
A Pen by Claudia.
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></title> | |
</head> | |
<body> | |
<div>Div Normal</div> | |
<br /> | |
<div class="float">Div Ajustado por float</div> | |
<br /><br /> | |
<div class="pos-abs">Div Ajustado por position</div> | |
<br /><br /> | |
<div class="display">Div Ajustado por display</div> | |
<br /><br /> | |
<div class="table">Div Ajustado por table</div> | |
</body> | |
</html> |
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
div{ | |
background: #666; | |
color: #fff; | |
} | |
.float{ | |
float:left; | |
} | |
.pos-abs{ | |
position: absolute; | |
} | |
.display{ | |
display: inline-block; | |
} | |
.table{ | |
display:table; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment