css.css (525B)
1 /* Applies to the entire body of the HTML document (except where overridden by more specific 2 selectors). */ 3 body { 4 margin: 25px; 5 background-color: rgb(240,240,240); 6 font-family: arial, sans-serif; 7 font-size: 14px; 8 } 9 10 /* Applies to all <h1>...</h1> elements. */ 11 h1 { 12 font-size: 35px; 13 font-weight: normal; 14 margin-top: 5px; 15 } 16 17 /* Applies to all elements with <... class="someclass"> specified. */ 18 .someclass { color: red; } 19 20 /* Applies to the element with <... id="someid"> specified. */ 21 #someid { color: green; }