Skip to content

Instantly share code, notes, and snippets.

@pierreneter
Created January 5, 2016 10:25
Show Gist options
  • Save pierreneter/9fed262a033a8a77f437 to your computer and use it in GitHub Desktop.
Save pierreneter/9fed262a033a8a77f437 to your computer and use it in GitHub Desktop.
css for div block
div {
height: 100px;
}
.red-bg {
background-color: #FF0000;
}
.green-bg {
background-color: #00FF00;
}
.blue-bg {
background-color: #0000FF;
}
<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