国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

css remove list item li default style

Example analysis:

list-style-type attribute is used to set the type of list item tag.

Set list-style-type: none to remove the default style of list item li.

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> ul.demo { list-style-type: none; margin: 0; padding: 0; } </style> </head> <body> <p>默認(rèn)列表:</p> <ul> <li>Coffee</li> <li>Tea</li> <li>Coca Cola</li> </ul> <p>刪除默認(rèn)樣式:</p> <ul class="demo"> <li>Coffee</li> <li>Tea</li> <li>Coca Cola</li> </ul> </body> </html>
submitReset Code