List Types
🎨 List CSS Styling — List Ko Sundar Banao
li { padding: 8px 0; } ul { list-style: none; }
Default HTML lists boring lagti hain — plain bullets, basic numbers, koi personality nahi. CSS styling unhe beautiful, branded lists mein transform karta hai jo tumhari website ke design se match kare.
Key CSS properties: list-style-type marker change karta hai, list-style-image custom image use karta hai, list-style-position marker placement control karta hai, aur regular spacing/padding/color properties baaki handle karti hain.
Restaurant Menu Analogy: Plain list jaise xeroxed menu — functional par ugly. Styled list jaise Paradise ka printed menu — beautiful fonts, spacing, colors, branding. Same content, completely different experience.
Code Example
HTML — List CSS Styling — List Ko Sundar Banao
/* Custom design ke liye default bullets hatao */
ul.custom {
list-style: none;
padding: 0;
margin: 0;
}
ul.custom li {
padding: 12px 16px;
border-bottom: 1px solid #eee;
position: relative;
padding-left: 32px;
}
/* Pseudo-element se custom bullet */
ul.custom li::before {
content: '🍛';
position: absolute;
left: 8px;
top: 12px;
font-size: 16px;
}
/* Nav ke liye horizontal list */
ul.horizontal {
list-style: none;
display: flex;
gap: 20px;
padding: 0;
}
ul.horizontal li {
padding: 8px 16px;
}
/* Styled ordered list */
ol.styled {
counter-reset: step;
list-style: none;
padding: 0;
}
ol.styled li {
counter-increment: step;
padding: 12px 16px 12px 48px;
position: relative;
margin-bottom: 8px;
background: #f8f9fa;
border-radius: 8px;
}
ol.styled li::before {
content: counter(step);
position: absolute;
left: 12px;
top: 12px;
width: 24px;
height: 24px;
background: #f97316;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 700;
}list-style: noneDefault bullets completely hata dolist-style-typeMarker change karo: disc, circle, square, etc.list-style-imageCustom image bullet marker ke liyelist-style-positioninside (text neeche wrap) ya outside (default)::before pseudoEmoji/icon/number se custom bullet banaocounter-reset/incrementCustom numbered lists ke liye CSS countersdisplay: flexList ko horizontal banao (nav menus)✅ When to Use
- Navigation menus (bullets hatao, hover effects add karo)
- Feature lists (custom icons bullets ke liye)
- Step indicators (numbered circles)
- Timeline views (vertical line + dots)
- Koi bhi list jo brand design se match karni ho
❌ When NOT to Use
- Jab default browser styling kaafi ho
- Print stylesheets (default bullets print mein clearer hain)
Sabse professional approach: `list-style: none` se default bullets hatao, phir `::before` pseudo-element se custom markers banao. Yeh size, color, position, aur animation pe full control deta hai. Har modern website yehi karta hai.