Which property of CSS enables to set multiple list properties at once?
2021
Which property of CSS enables to set multiple list properties at once?
Answer: D. List-style — The list-style shorthand covers these three individual sub-properties: list-style-type: Defines the design of the marker (e.g., disc, circle, square, decimal,…
- A.
List-style-type
- B.
List-style-image
- C.
List-style-position
- D.
List-style
Attempted by 460 students.
Show answer & explanation
Correct answer: D
The list-style shorthand covers these three individual sub-properties:
list-style-type: Defines the design of the marker (e.g.,disc,circle,square,decimal,lower-roman).list-style-position: Determines if the marker appears inside or outside the content flow (insideoroutset).list-style-image: Allows you to use a custom image as the marker (e.g.,url('bullet.png')).
Loading lesson…