define
1. list-style-
2.empty-cells-
Answers
Answered by
2
1.The list-style-type property defines the type of list by setting the content of each marker, or bullet, on the list. Acceptable keyword values for list-style-type include: disc. circle
2.In other words, it tells the browser whether or not to draw borders around a table cell or fill in the background when that cell contains no content. ... It's kind of like applying a visibility property on empty table cells.
Answered by
4
Answer:
The list-style property is a shorthand property that sets values for three different list-related properties in one declaration: ul { list-style: <list-style-type> || <list-style-position> || <list-style-image>; } Here's an example of the syntax: ul { list-style: square outside none; }
Similar questions