码迷,mamicode.com
首页 > 其他好文 > 详细

切图的必要步骤

时间:2020-05-14 22:25:35      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:oom   htm   none   div   content   margin   code   规划   包含   

1.写一个reset.css,清除页面原有边距,清除列表标签格式

*{
    margin: 0;
    padding: 0;
}
ul,ol{
    list-style: none;
}

2.对应html页面,规划好有哪几块内容,确定哪些有表芯(margin:0 auto;)

3.对应页面的style.css中,先可以写好清除浮动,将边框包含进元素宽高

.clearfix::after{
    content: "";
    display: block;
    clear: both;
    zoom: 1;
}
.box{
    box-sizing: border-box;
}

 

切图的必要步骤

标签:oom   htm   none   div   content   margin   code   规划   包含   

原文地址:https://www.cnblogs.com/sycamore0802/p/12891654.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!