(从已经死了一次又一次终于挂掉的百度空间人工抢救出来的,发表日期 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. concat、reverse面试题

    1.concat数组连接 ,,]; ,,]; ,,]; alert(arr3.concat(arr1,arr2)); 结果:9,9,9,2,3,4,5,6,7 2.reverse将数组内容颠个个 ,, ...

  2. 更改 input type 的值

    需要实现的效果:一个输入框,当输入框未获得焦点的时候,value 值为 “密码”:当输入框失去焦点的时候,输入内容显示为”*****” <input name=”password” type=” ...

  3. mysql初识之数据文件及其他文件

    在mysql中数据文件存放于在my.cnf中datadir指定的路径,使用的表引擎不同产生的文件格式.表文件个数也会有所差异.mysql的表引擎有多种,表的扩展名也不一样,如innodb用“ .ibd ...

  4. Velocity+Java较全教程

    一.安装myEclipse 二.安装velocity的eclipse插件: http://www.oschina.net/p/veloeclipse(介绍) 方法1(现在基本上非常慢)http://p ...

  5. C# Datatable的Select方法

    lubiaopan 原文 Datatable的Select()方法简介 DataTable是我们在进行开发时经常用到的一个类,并且经常需要对DataTable中的数据进行筛选等操作,下面就介绍一下Da ...

  6. Delphi Val函数

    在这里Val和iif都是你所用的数据库中的函数在delphi中Val是一个将字符串转换为数字的函数,Val(S; var V; var Code: Integer)第一个参数是要转换的字符串,第二个参 ...

  7. ASP.NET 如何做出简单的验证码

    如果说要做验证码,那不得不提的就是GDI+绘图了.我们都知道验证码是以图片形式展示的,而且是动态生成的,这样就需要我们去画出它. 科普一下,什么是GDI+? GDI+是图形设备接口(GDI)的高级版本 ...

  8. pycharm出现乱码

    1. 'gbk' codec can't encode character u'\xb8' 解决办法 import sys reload(sys)sys.setdefaultencoding('utf ...

  9. 黑马程序员——有关protocol代理模式的举例说明

    学习了protocol协议的基本原理和使用方法之后 ,下面就看一下在程序中是怎么体现这种代理思想的. 假定有个人jack需要找一个厨师为自己做饭,当他想要吃饭的时候就可以让厨师给他做好饭.这一需求如何 ...

  10. 黑马程序员——OC的内存管理学习小结

    内存管理在Objective-C中的重要性就像指针在C语言中的重要程序一样. 虽然作为一门高级语言,但OC却没有内存回收机制.这就需要开发者来对动态内存进行管理.OC中内存管理的范围是:任何继承了NS ...