20 thủ thuật CSS dành cho người mới bắt đầu học
Khi bạn thiết kế website thì ngoài phần html thì css là thành phần quan trọng thứ 2, 1 website đẹp, code gọn thì bạn cần phải nắm rõ cấu trúc và syntax của css ! Dưới đây là 20 thủ thuật và bạn nên áp dụng ngay trong file css của bạn !
-
Use reset.css
When it comes to rendering CSS styles, browsers like Firefox and Internet Explorer have different ways of handling them. reset.css resets all fundamental styles, so you starts with a real blank new stylesheets.
Here are few commonly used reset.css frameworks – Yahoo Reset CSS, Eric Meyer’s CSS Reset, Tripoli
-
Use Shorthand CSS
Shorthand CSS gives you a shorter way of writing your CSS codes, and most important of all – it makes the code clearner and easier to understand.
Instead of creating CSS like this
- .header {
- background-color: #fff;
- background-image: url(image.gif);
- background-repeat: no-repeat;
- background-position: top left;
- }
It can be short-handed into the following:
- .header {
- background: #fff url(image.gif) no-repeat top left
- }
More – Introduction to CSS Shorthand, Useful CSS shorthand properties
-
Understanding Class and ID
These two selectors often confuse beginners. In CSS, class is represented by a dot "." while id is a hash ‘#". In a nutshell id is used on style that is unique and don’t repeat itself, class on the other side, can be re-use.
More – Class vs. ID | When to use Class, ID | Applying Class and ID together
-
Power of
a.k.a link list, is very useful when they are use correctly with
or , particulary to style a navigation menu.
More – Taming Lists, Amazing LI
-
|