CSS Basic Syntax
This is the real essential for every single newcomer. CSS syntax is easy to understand, and I hope I’ll make it clear to you. Here I have three basic examples of CSS rules. Inline declaration: span {...
View ArticleCSS Id Selector
The best practice in CSS is to gather all style informations to a separated document(s), called stylesheet(s). The meaning is obvious. We want to separate style from content and vice versa. To make...
View ArticleCSS Class Selector
When you are styling your html document, sometimes you need to apply same style to more than one element. For this purpose, in CSS we use class selector. Class selectors use dot notation, and simple...
View ArticleCSS Comments
If you are new to CSS, this is true essential for you. The CSS comment syntax. It’s great practice to use comments, even if your stylesheet isn’t too long. After some time, when you will be coming back...
View Article