问答详情
源自:3-1 CSS 标签元素的内置padding

li中使用margin-bottom:-1px并不能使最后一个li的下边框被覆盖掉,求解决

<ul id="test">  
        <li>Test</li>  
        <li>Test</li>  
        <li>Test</li>  
        <li>Test</li>  
        <li>Test</li>  
    </ul>
body,ul,li{margin:0;padding:0;}  
   ul,li{list-style:none;}  
   #test{  
       margin:20px;  
       width:390px;  
       background:#F4F8FC;  
       border-radius:3px;  
       border:6px solid red;  
   }  
/*每一个li的高度是35px*/  
   #test li{  
       height:25px;  
       line-height:25px;  
       padding:5px;  
       border-bottom:3px dotted black;  
margin-bottom:-3px;  
   }


提问者:慕少7532173 2016-10-15 17:45

个回答

  • 不明真相的小白
    2016-10-16 16:48:28

     你不设置那个margin-bottom 或者 值设置为正不就行了吗~~~