remove-bullets-from-unordered-html-list
| empty | rev 1 | ||||
|---|---|---|---|---|---|
| t | t | 1 | How do you remove the bullets from an unordered html list? | ||
| 2 | =========================================================== | ||||
| 3 | |||||
| 4 | .. code-block:: html | ||||
| 5 | |||||
| 6 | <ul style='list-style-type: none'> | ||||
| 7 | <li> </li> | ||||
| 8 | <li> </li> | ||||
| 9 | <li>x</li> | ||||
| 10 | <li>x</li> | ||||
| 11 | <li>x</li> | ||||
| 12 | <li>x</li> | ||||
| 13 | </ul> | ||||
| 14 | |||||
| 15 | Use css style **list-style-type: none** of course! | ||||
Remarkbox