Home  >  Article  >  Web Front-end  >  菜鸟求助“加了<li>标签后文本左间距大了很多”_html/css_WEB-ITnose

菜鸟求助“加了<li>标签后文本左间距大了很多”_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:08:421633browse

 td {
padding:15px 20px 15px 0px;

}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


    
     
            
  • 接收(希望)往来企业提供的购物券等

  •         
  • 接收对交通费/机票、差旅费的赞助 

  •         
  • 接收节日礼物

  •     
 
 

css里设置左间距为0了,怎么用到
  • 标签左间隙会大很多呢?这个有的调么?


    回复讨论(解决方案)

    ul和li有默认值吧

    在css文件中加上

    *{margin:0;padding:0;}

    把li和ul也加入css定义

    ul,li{padding:0; margin:0;}

    或许加个
    list-style:none;
    试试……?

    ul,li{
    margin-left:0px;
    padding-left:0px;
         }

    给li ul添加一个样式
    ul li{list-type:none; margin:0; padding:0;}

  • Statement:
    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