Created
March 15, 2015 17:51
-
-
Save miguelgazela/0e433ed0ccf284c3beeb to your computer and use it in GitHub Desktop.
Front-end CSS - João Bernardino
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; border: 1px solid black; display: inline-block; } | |
div:nth-child(2n) { | |
border: 1px dashed black; | |
} | |
div:nth-child(3) { | |
border: 1px dotted black; | |
} | |
/* o que acontece ao acrescentar a seguinte regra? */ | |
/* div:last-child { float: right; } */ | |
</style> | |
<div></div> | |
<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/umr123an/1/