Basic CSS Styling
Target Tags and Classes from CSS
by mmansion
HTML
<div class="div1"></div>
<div class="div2"></div>
<div class="orange"></div>
CSS
/* this is a comment */
div {
width: 50%; /*measure in percent*/
height: 100px; /*measure in pixel*/
/*margin: 20px;*/
margin-bottom: 20px;
background: gray;
}
.div1 {
background: #00FF00; /* hexidecimal color*/
}
.div2 {
background: #FF0000; /* hexidecimal color*/
}
.orange {
background: orange;
}