remove-bullets-from-unordered-html-list

JSON

rev 1  |  foxhop  |  1287699518000  |  JSON

empty
rev 1
tt1How 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 
15Use css style **list-style-type: none** of course!