Impact of border property on top margin

前端 未结 3 461
失恋的感觉
失恋的感觉 2020-12-20 03:25

Refer to the following code:



        
3条回答
  •  醉话见心
    2020-12-20 04:14

    Problem is your ul tag is not clear

    body{
      height: 500px;
      width: 80%;
      margin-top: 0;
      margin-bottom: 0;  
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      background-color: lightgray; 
    }
    
    .header {
      width: 80%;
      height: 100px;
      margin-left: auto;
      margin-right: auto; 
    
      background-color: yellow; 
      /*border: solid 1px black;*/  
    }
    ul{float: left;}
     
    
         
          
        
      
      
        
      
     

提交回复
热议问题