I'll write this time about cheat sheet..
I don’t know about you but I really love cheat sheet…
They are very useful for beginners in CSS..
And very helpful for professionals
Because simply no one can remember everything …I mean every rule and every property…
So I'll give you my own cheat sheet that I use for CSS
1- The syntax:
Syntax
selector {property: value;}
External Style Sheet
<link rel="stylesheet" type="text/css" href="style.css" />
Internal Style
<style type="text/css">
selector {property: value;}
</style>
Inline Style
<tag style="property: value">
2- Generals:
Quote
ID: String preceded by a hash mark
Div: Formats structure or block of text
Span: Inline formatting
Color: Foreground color
Cursor: Appearance of the cursor
Display: block; inline; list-item; none
Overflow: How content overflowing its box is handled (Visible, hidden, scroll, auto)
Visibility: Visible, hidden
3- Fonts:
Quote
Font-variant: normal, small-caps
Font-weight: bold, normal, lighter, or you can use integer (100-900)
Font-size: means size of the font
Font-family: means a specific font
4-text:
Quote
Line-height: means the vertical distance between baselines
Text-align: means horizontal alignment
Text-decoration: like blink-line-through, none, overline, underline
Text-indent: means first line indentation
Text-transform: capitalize, lowercase, uppercase
Vertical-align: means vertical alignment
Word-spacing: means spacing between words
I hope you'll find it useful..

















