CSS Almanach
|
CSS References
Resources about CSS Units
- Mozilla Developer Network – CSS Length
- css-tricks.com – The Length of CSS
CSS Colors
How Hexadecimal Works
References
CSS Shadow generator
The box-shadow property is relatively new to the world of CSS. You can use it to add a shadow to an element. If you want to try experimenting with box-shadows, check out this box-shadow generator from CSSmatic.
CSS Comments
The example for CSS comments:
p {
color: blue;
}
/* add CSS here */
h1 {
color: red;
}