Skip to content

Instantly share code, notes, and snippets.

@miguelgazela
Created March 15, 2015 17:44
Show Gist options
  • Save miguelgazela/bc817746faeb2cef7575 to your computer and use it in GitHub Desktop.
Save miguelgazela/bc817746faeb2cef7575 to your computer and use it in GitHub Desktop.
Front-end CSS - Anaís
<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>
@miguelgazela
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment