📚 Bootstrap Reboot Notes
1. Reboot Kya Hai?
Bootstrap ka CSS part jo browser ke default styles ko reset karta hai aur cross-browser consistency provide karta hai.
2. Reboot Ka Kaam
- Headings (h1-h6) aur paragraphs (p) ki spacing normalize karta hai.
- Lists aur table ke spacing aur borders ko standardize karta hai.
- Forms (input, button, textarea) ko uniform style deta hai.
- Font-family aur font-size ko consistent banata hai.
3. Example - Before Reboot (Browser Default)
Heading 1
Paragraph text with browser default margin and font.
4. Example - With Bootstrap Reboot
Heading 1
Paragraph text now normalized with Bootstrap Reboot.
5. Advantages ✅
- Cross-browser consistency
- Predictable spacing, font, and layout
- Custom CSS easier to apply
- Professional look without extra effort
6. How to Use
Add Bootstrap CSS in your HTML, Reboot comes automatically:
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet">
Then use normal HTML elements, they will inherit Reboot styles.