Paged
Bullets
Bullet styles
| Square bullets: | li{list-style-type: square;} |
| Circle bullets: | li{list-style-type: circle;} |
| Numbered bullets: | li{list-style-type: decimal;} |
| Uppercase Roman Numerals bullets: | li{list-style-type: upper-roman;} |
| Lowercase Roman Numerals bullets: | li{list-style-type: lower-roman;} |
| Lowercase letter bullets: | li{list-style-type: lower-alpha;} |
| Uppercase letter bullets: | li{list-style-type: upper-alpha;} |
| No bullets: | li{list-style-type: none;} |
| Imaged bullets: | li{list-style-image: url(###)} |
Bullet Hover Effects: When hovered, your current bullet changes to a:
| Square bullet: | li:hover{list-style-type: square;} |
| Circle bullet: | li:hover{list-style-type: circle;} |
| Numbered bullet: | li:hover{list-style-type: decimal;} |
| Uppercase Roman Numerals bullet: | li:hover{list-style-type: upper-roman;} |
| Lowercase Roman Numerals bullet: | li:hover{list-style-type: lower-roman;} |
| Lowercase letter bullet: | li:hover{list-style-type: lower-alpha;} |
| Uppercase letter bullet: | li:hover{list-style-type: upper-alpha;} |
| No bullet: | li:hover{list-style-type: none;} |
| Imaged bullet: | li:hover{list-style-image: url(###)} |