Created
January 5, 2016 10:25
-
-
Save pierreneter/9fed262a033a8a77f437 to your computer and use it in GitHub Desktop.
css for div block
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
div { | |
height: 100px; | |
} | |
.red-bg { | |
background-color: #FF0000; | |
} | |
.green-bg { | |
background-color: #00FF00; | |
} | |
.blue-bg { | |
background-color: #0000FF; | |
} |
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
<div class="red-bg"> | |
</div> | |
<div class="green-bg" style="width:100px;"> | |
</div> | |
<div class="blue-bg" style="width:200px;"> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment