html+css实战130-版心和清除样式

index.css


/* index.css是用来美化首页的 */
* {
    margin: 0;
    padding: 0;
    /* 內减模式 */
    box-sizing: border-box;
}

li {
    list-style: none;
}
a {
    text-decoration: none;
}

.clearfix:before,.clearfix:after {
    content:"";
    display:table; 
  }
  .clearfix:after {
    clear:both;
  }



body{
    background-color: #f3f5f7;
}

.wrapper{
    width: 1200px;
    margin: 0 auto;
}

猜你喜欢

转载自blog.csdn.net/geyaoisnice/article/details/125123798