站内搜索:
首页 >> 前端 >> 内容
前端重置样式,将html元素自带样式清除的代码教程

时间:2017/12/14 13:46:40

本文主要是展示前端重置样式,即将html元素自带样式清除。

reset.css代码如下:

body,p,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
li{list-style:none;}
input[type=radio]{cursor: pointer}
input[type=checkbox]{cursor: pointer}
*{box-sizing: border-box;}
a{  text-decoration:none;
}

  • 上一篇:addEventListener(主流)和attachEvent(IE678)介绍
  • 下一篇:document.write页面空白问题如何解决?
  • 返回顶部