xx"; 2. Remove via "list-style-type:none;" Remove; 3. Remove by setting class."/> xx"; 2. Remove via "list-style-type:none;" Remove; 3. Remove by setting class.">
Home > Article > Web Front-end > How to remove li points in css
How to remove li points in css: 1. Remove through "
xx "; 2. Through "list- style-type:none;" method to remove; 3. Remove by setting class.
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.
css remove li points
Method one:
<ul> <li style="list-style-type:none;">百度</li> <li style="list-style-type:none;">雅虎</li> <li style="list-style-type:none;">新浪</li> <li style="list-style-type:none;">谷歌</li> </ul>
Method two:
<style> li { list-style-type:none; } </style> <ul> <li>百度</li> <li>雅虎</li> <li>新浪</li> <li>谷歌</li> </ul>
Method three:
<style> .aa { list-style-type:none; } </style> <ul> <li class="aa">百度</li> <li class="aa">雅虎</li> <li class="aa">新浪</li> <li class="aa">谷歌</li> </ul>
Recommended study: "css video tutorial"
The above is the detailed content of How to remove li points in css. For more information, please follow other related articles on the PHP Chinese website!