Created
March 15, 2015 17:44
-
-
Save miguelgazela/bc817746faeb2cef7575 to your computer and use it in GitHub Desktop.
Front-end CSS - Anaís
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; margin-bottom: 10px; } | |
#one { border: 2px solid black; } | |
#two { border: 2px dashed black; display: none; } | |
#three { border: 2px dotted black; } | |
/* o que acontece ao acrescentar a seguinte regra? */ | |
/* #two { display: block; visibility: hidden; } */ | |
</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
Resultados em https://jsfiddle.net/miguelgazela/uh97bu9z/2/