Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Usage of CSS list-style property
The list-style serves as shorthand for the preceding properties. The list-style allows you to specify all the list properties into a single expression.
Example
<html> <head> </head> <body> <ul style = "list-style: inside square;"> <li>Table</li> <li>Chair</li> </ul> </body> </html>
Advertisements
