CSS Tutorial - CSS Best Practices
โ CSS Best Practices
๐ Professional CSS Likhne Ke Tips:
๐ Golden Rules
Do's
- โ Use classes over IDs for styling
- โ Keep specificity low
- โ Use shorthand properties
- โ Organize code with comments
- โ Use CSS variables for colors
- โ Mobile-first responsive design
โ Don'ts:
- โ Inline styles avoid karo
- โ !important mat use karo (unless emergency)
- โ Repeated code mat likho (DRY principle)
๐ก CSS Variables
:root {
--primary: #3498DB;
--secondary: #2ECC71;
}
.btn {
background: var(--primary);
}
Example
/* Good CSS */
.button {
padding: 10px;
background: blue;
}