Created
March 16, 2015 21:56
-
-
Save miguelgazela/229d3ccd48da7fefce13 to your computer and use it in GitHub Desktop.
Front-end CSS - Joana Ferreira
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 { | |
border: 1px solid black; | |
width: 100px; | |
height: 50px; | |
margin: 0 auto; | |
margin-bottom: 10px; | |
position: relative; | |
} | |
div:nth-child(2n) { | |
border: 1px dashed black; | |
} | |
div:last-child:after { | |
content: ""; | |
width: 100%; | |
height: 50%; | |
border: 1px dotted black; | |
position: absolute; | |
top: 100%; | |
} | |
/* o que acontece ao acrescentar a seguinte regra? */ | |
/*div { display: inline-block; } */ | |
</style> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Resultados em https://jsfiddle.net/miguelgazela/nhcz81hf/2/