ULのドットを消す
- 書き方
12345<ul style="list-style:none;"><li>あ</li><li>い</li><li>う</li></ul> - 出力結果
- あ
- い
- う
ULのドットを画像にする
1 2 3 4 5 |
<ul> <li style="list-style:url('icon.png');">あ</li> <li style="list-style:url('icon.png');">い</li> <li style="list-style:url('icon.png');">う</li> </ul> |
- あ
- い
- う