Created
March 15, 2015 17:32
-
-
Save miguelgazela/7b87f4cb020f4925f301 to your computer and use it in GitHub Desktop.
Front-end CSS - Sofia Reis
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
<style> | |
div { height: 100px; width: 100px; display: inline-block; } | |
#one { border: 2px solid black; } | |
#two { position: relative; border: 2px dashed black; top: 20px; left: 20px; } | |
#three { border: 2px dotted black; } | |
/* o que acontece ao acrescentar a seguinte regra? */ | |
/* #two { position: absolute; } */ | |
</style> | |
<div id="one"></div> | |
<div id="two"></div> | |
<div id="three"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Os resultados podem ser vistos em https://jsfiddle.net/miguelgazela/L3xw9g5b/