这篇文章主要介绍“CSS样式重置和清除方法”,在日常操作中,相信很多人在CSS样式重置和清除方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CSS样式重置和清除方法”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
为了让页面在各不同浏览器之间显示效果一致,CSS样式清除和重置是前端开发必需要做的事情,结合前车之鉴,整理了份CSS重置样式代码供参考。
代码如下:
@charset "utf-8";
body, h2, h3, h4, h5, h6, h7, hr, p, blockquote, pre,
dl, dt, dd, ul, ol, li, th, td, div, span, img,
fieldset, lengend, button, input, select, textarea{margin: 0;padding: 0;}
html{color:#000; background:#FFF;}
body, button, input, select, textarea {
font: 12px/18px Arial, Verdana, Microsoft YaHei;
}
html,body {height: 100%;margin: 0 auto;}
h2 {font-size: 18px;}
h3 {font-size: 16px;}
h4 {font-size: 14px;}
h5, h6, h7 {font-size: 100%;}
a { text-decoration: none; }
a:hover { text-decoration: underline; }
ul,ol {list-style: none;}
fieldset,img{border: 0}
table {border-collapse: collapse;border-spacing: 0;font:inherit;}
.alpha {margin-left: 0;}
.omega {margin-right: 0;}
.left{float:left;}
.right{float:right;}
.clear {clear: both;display: block;}
.clearfix:after{content:".";display:block;}
.clearfix{display:inline-table;}
* html .clearfix{height:1%;}
.clearfix{display:block;}
*+html .clearfix{min-height:1%;}
到此,关于“CSS样式重置和清除方法”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!