(从已经死了一次又一次终于挂掉的百度空间人工抢救出来的,发表日期 2014-06-24)

为了消除各浏览器对css默认的设置,保持网页在各浏览器中的外观保持一致,初始化css就显得非常必要了!很多时候出现的样式不兼容问题,都可以通过css初始化代码来解决。下面列举常用的一些方案:

1.最耗资源的,最简单的

* { padding: 0; margin: 0; border: 0; } 

2.选择性初始化举例(综合)

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,legend,button

form,fieldset,input,textarea,p,blockquote,th,td {

  padding: 0;

  margin: 0;

}

批注:上面的写法有问题,会导致浏览器解析异常。原因不明,推荐使用下面替代方案:

html, body, div, span, applet, object, iframe,

h1, h2, h3, h4, h5, h6, p, blockquote, pre,

a, abbr, acronym, address, big, cite, code,

del, dfn, em, img, ins, kbd, q, s, samp,

small, strike, strong, var,

b, u, i, center,

dl, dt, dd, ol, ul, li,

fieldset, form, label, legend,

table, caption, tbody, tfoot, thead, tr, th, td,

article, aside, canvas, details, embed,

figure, figcaption, footer, header, hgroup,

menu, nav, output, ruby, section, summary,

time, mark, audio, video {

margin: 0;

padding: 0;

border: none;

outline: none;

font-size: 100%;

font: inherit;

vertical-align: baseline;

}

或者:

body,div,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;}

/* 酌情修改 */

body {

background:#fff;color:#333;font-size:12px;font-family:"SimSun","宋体","Arial Narrow";

}

/* 短引用的内容可取值:''或"" */

q:before,q:after {content:”;}

/* 缩写,图片等无边框 */

fieldset,img,abbr,acronym {border: 0 none;}

abbr,acronym {font-variant: normal;}

legend {color:#000;}

/* 清除特殊标记的字体和字号 */

address,caption,cite,code,dfn,em,strong,th,var {

  font-weight: normal;

  font-style: normal;

}

/* 上下标 */

sup {vertical-align: text-top;}

sub {vertical-align: text-bottom;}

/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/

table {

  border-collapse: collapse;

  border-spacing: 0;

}

/* 表格标题及内容居左显示 */

caption,th {text-align: left;}

input,img,select {vertical-align:middle;}

/* 清除列表样式 */

ol,ul {list-style: none;}

/* 输入控件字体 */

input,button,textarea,select,optgroup,option {

font-family:inherit;

font-size:inherit;

font-style:inherit;

font-weight:inherit;

}

/* 标题元素样式清除 */

h1,h2,h3,h4,h5,h6 {

  font-weight: normal;

  font-size: 100%;

}

/* 链接样式,颜色可酌情修改 */

del,ins,a {text-decoration:none;}

a:link {color:#009;}

a:visited {color:#800080;}

a:hover,a:active,a:focus {color:#c00; text-decoration:underline;}

/* 鼠标样式 */

input[type="submit"] {cursor: pointer;}

button {cursor: pointer;}

input::-moz-focus-inner { border: 0; padding: 0;}

3.sina的

/* 全局样式 */

body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div{

   margin:0;padding:0;border:0;

}

body{

   background:#fff;color:#333;font-size:12px; margin-top:5px;font-family:"SimSun","宋体","Arial Narrow";

}

ul,ol{

   list-style-type:none;

}

select,input,img,select{

   vertical-align:middle;

}

a{text-decoration:none;}a:link{color:#009;}a:visited{color:#800080;}a:hover,a:active,a:focus{color:#c00;text-decoration:underline;}

4.yahoo的

html {
   background: none repeat scroll 0 0 #FFFFFF;
   color: #000000;

}

body, div, 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 none;

}

address, caption, cite, code, dfn, em, strong, th, var {

   font-style: normal;
   font-weight: normal;

}

li {

   list-style: none outside none;

}

caption, th {

   text-align: left;

}

h1, h2, h3, h4, h5, h6 {

   font-size: 100%;
   font-weight: normal;

}

q:before, q:after {

   content: "";

}

abbr, acronym {

   border: 0 none;
   font-variant: normal;

}

sup {

   vertical-align: text-top;

}

sub {

   vertical-align: text-bottom;

}

input, textarea, select {

   font-family: inherit;
   font-size: inherit;
   font-weight: inherit;

}

input, textarea, select {

}

legend {

   color: #000000;

}

body {

   font: 13px/1.231 arial,helvetica,clean,sans-serif;

}

select, input, button, textarea {

   font: 99% arial,helvetica,clean,sans-serif;

}

table {

   font-size: inherit;

}

pre, code, kbd, samp, tt {

   font-family: monospace;
   line-height: 100%;

}

a {

   text-decoration: none;

}

a:hover, a:focus {

   text-decoration: underline;

}

strong {

   font-weight: bold;

}

input[type="submit"] {

   cursor: pointer;

}

button {

   cursor: pointer;
}

5.博客园的

/*version: 2.7.0*

/html, body {

color: #000;

background: #FFF;

}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {

margin: 0;

padding: 0;

}

table {

border-collapse: collapse;

border-spacing: 0;

}

fieldset, img { border: 0; }

address, caption, cite, code, dfn, em, strong, th, var, optgroup {

font-style: inherit;

font-weight: inherit;

}

del, ins { text-decoration: none; }

li { list-style: none; }

caption, th { text-align: left; }

h1, h2, h3, h4, h5, h6 {

font-size: 100%;

font-weight: normal;

}

q:before, q:after { content: ''; }

abbr, acronym {

border: 0;

font-variant: normal;

}

sup { vertical-align: baseline; }

sub { vertical-align: baseline; }

legend { color: #000; }

input, button, textarea, select, optgroup, option {

font-family: inherit;

font-size: inherit;

font-style: inherit;

font-weight: inherit;

}

input, button, textarea, select { *font-size:100%;

}

.clear { clear: both; }

input::-moz-focus-inner {

border: 0;

padding: 0;

}/*added*/

input[type=button], input[type=submit] { -webkit-appearance: button; }

【个人收藏】

css初始化代码方案的更多相关文章

  1. css初始化代码

    最近老有新项目开发,一直在找存留的CSS初始化代码,索性放到这里备份下, @charset "utf-8"; /* -------------------------------- ...

  2. 各大门户网站的css初始化代码

    腾讯QQ官网 css样式初始 body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select ...

  3. CSS 初始化 代码

    腾讯QQ官网 样式初始化 ;} body{font:12px"宋体","Arial Narrow",HELVETICA;background:#fff;-web ...

  4. 2016/3/1 淘宝 腾讯 网易 css初始化代码 以及最基础的初始化

    淘宝官网(http://www.taobao.com/)样式初始化 body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, o ...

  5. 各大网站CSS初始化代码集合

    css代码之所以初始化,是因为能尽量减少 各浏览器之间的兼容性问题! 腾讯QQ官网 样式初始化 body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fiel ...

  6. 各大网站css初始化代码【转】

    文章来源:http://blog.sina.com.cn/s/blog_71ed1b870101a52w.html 腾讯QQ官网(http://www.qq.com)样式初始化 body,ol,ul, ...

  7. 雅虎工程师提供的CSS初始化代码

    body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,b ...

  8. 雅虎CSS初始化代码

    body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,b ...

  9. 淘宝的css初始化代码

    ;; } body, button, input, select, textarea { font:12px/1.5tahoma, arial, \5b8b\4f53; } h1, h2, h3, h ...

随机推荐

  1. Android 多进程编程 15问15答!

    ps:阅读本文 需要对android 多进程编程有一定了解. 1.Android中总共有几种方式进行IPC? 答:一共有两种,一种是binder 还有一种是socket.Binder 大家用的比较多. ...

  2. LR之录制SQL脚本

    1.选择协议 ①MS SQL serve ②ODBC 一般情况下选ODBC 2.录制步骤

  3. Win7桌面快捷方式全变成某个软件的图标,然后所有快捷方式都只打开这个图标的软件

    电脑真是用到老学老好,之前没有遇到的情况,今天终于碰上了. 由于电脑桌面搜狗浏览器图标总不显示,于是选择快捷方式的打开方式为搜狗浏览器,结果,尼玛呀,全部快捷图标都变成搜狗的. 上网找了一下,双击就搞 ...

  4. NSIS学习笔记(转)

    转自:http://blog.csdn.net/lee353086/article/details/45919901 NSIS学习笔记Date:2015-05-20Author:kagulaEnv:V ...

  5. nagios监控linux设置

    本章主要用来设置nagios的相关配置文件,从而能实现对linux系统的监控. 在进行监控相关服务的时候,nagios会周期性的调用插件去监测服务器的状态,nagios自带的所有插件都放在如下目录: ...

  6. 设计模式 单件-Singleton

    单件模式 Singleton 什么时候使用?当需要独一无二的对象时,请想起他. 举例:线程池(threadpool),缓存(cache),对话框,处理偏好设置和注册表(registry)的对象,驱动程 ...

  7. 在logopond中看到的优秀设计随想

    本随笔仅仅只是自己对于设计作品的想法,不喜勿喷~ 昨日看到关于大神配色的文章,决定在logopond网站中看看优秀的作品,以为自己的配色找找灵感,学习学习,对自己有很强的震撼力的有: 以女性高跟性的抽 ...

  8. 遵守GPL的开源软件能用于商用吗?

    遵守GPL的开源软件能用于商用吗? 比较经典的开源协议有 GPL,BSD 等等. GPL 软件可以用于商业用途,甚至说,RMS 撰写 GPL 协议的目的就是为了让自己的 GPL 软件 emacs 可以 ...

  9. xdebug初步

    ;加载xdebug模块. 根据PHP版本来选择是zend_extension还是zend_extension_ts  ts代表线程安全  被坑过1次zend_extension="\web\ ...

  10. HttpClient 操作总结

    1.HttpClient4.3和之前版本设置超时(set timeout)区别: 参考:http://my.oschina.net/u/577453/blog/173724 解析:如果不设置超时的话, ...