How to remove the dots in css li

藏色散人
Release: 2023-01-04 09:35:31
Original
8223 people have browsed it

How to remove li points in css: 1. Remove by "

  • "; 2. By "li{list-style-type" :none;}" method to remove; 3. Remove by setting the none value.

  • How to remove the dots in css li

    The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.

    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>
    Copy after login

    Method two:

    <style>
    li {list-style-type:none;}
    </style>
    <ul>
         <li>百度</li>
         <li>雅虎</li>
         <li>新浪</li>
         <li>谷歌</li>
    </ul>
    Copy after login

    Method three:

    <style>
    .li_style {list-style-type:none;}
    </style>
    <ul>
         <li class="li_style">百度</li>
         <li class="li_style">雅虎</li>
         <li class="li_style">新浪</li>
         <li class="li_style">谷歌</li>
    </ul>
    Copy after login

    [Recommended learning:css video tutorial

    The above is the detailed content of How to remove the dots in css li. For more information, please follow other related articles on the PHP Chinese website!

    Related labels:
    css
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template