CSS controls the UL indent spacing and removes the Li point the method

Source: Internet
Author: User

First, the CSS control of the UL indentation spacing method:

<style type= "Text/css" >
ul{margin-left:-10px;}
</style>
<ul>
<li> computer software and hardware application network www.45it.com</li>
</ul>



Two, CSS remove Li Point of three ways:

Method One:

<ul>
<li style= "List-style-type:none;" > Baidu </li>
<li style= "List-style-type:none;" > Yahoo </li>
<li style= "List-style-type:none;" > Sina </li>
<li style= "List-style-type:none;" > Google </li>
</ul>



Method Two:

<style type= "Text/css" >
Li{list-style-type:none;}
</style>
<ul>
<li> Baidu </li>
<li> Yahoo </li>
<li> Sina </li>
<li> Google </li>
</ul>



Method Three:

<style type= "Text/css" >
. Li_style{list-style-type:none;}
</style>
<ul>
<li class= "Li_style" > Baidu </li>
<li class= "Li_style" > Yahoo </li>
<li class= "Li_style" > Sina </li>
<li class= "Li_style" > Google </li>
</ul>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.