Page 29 - CSS
P. 29
li {
list-style-type: square;
}
The list-style-image property determines whether the list-item icon is set with an image, and
accepts a value of none or a URL that points to an image.
li {
list-style-image: url(images/bullet.png);
}
The list-style-position property defines where to position the list-item marker, and it accepts one
of two values: "inside" or "outside".
li {
list-style-position: inside;
}
Read Getting started with CSS online: https://riptutorial.com/css/topic/293/getting-started-with-css
https://riptutorial.com/ 7

