list-style is used as a shorthand for the above properties. list-style Allows you to specify all list properties into a single expression.
<html> <head> </head> <body> <ul style = "list-style: inside square;"> <li>Table</li> <li>Chair</li> </ul> </body> </html>
The above is the detailed content of Usage of CSS list-style property. For more information, please follow other related articles on the PHP Chinese website!