Loading

Quipoin Menu

Learn • Practice • Grow

css / Lists in CSS
interview

Q1. How do you style list markers in CSS?
Use list-style-type property to change bullet or numbering style: disc, circle, square, decimal, etc.

Q2. How do you remove bullets from lists?
Set list-style-type: none; This removes markers while keeping list structure.

Q3. What is list-style-position?
It controls whether markers are inside or outside the list item's content flow. Values: inside, outside.

Q4. How do you use custom images as bullets?
Use list-style-image: url('image.png'); to replace bullets with custom images.

Q5. What is the list-style shorthand?
list-style combines type, position, and image: list-style: square inside url('bullet.png');