(从已经死了一次又一次终于挂掉的百度空间人工抢救出来的,发表日期 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. hadoop的API对HDFS上的文件访问

    这篇文章主要介绍了使用hadoop的API对HDFS上的文件访问,其中包括上传文件到HDFS上.从HDFS上下载文件和删除HDFS上的文件,需要的朋友可以参考下hdfs文件操作操作示例,包括上传文件到 ...

  2. CleanMyMac2清理 lanchpad里面的图标没了

    好吧.用CleanMyMac2 清理了系统(10.9)之后图标没了.解决办法是: Launchpad存储在一个SQLite数据库中,存储目录是: ~/Library/Application Suppo ...

  3. [再寄小读者之数学篇](2014-11-19 $\tan x/x$ 在 $(0,\pi/2)$ 上递增)

    $$\bex \frac{\tan x}{x}\nearrow. \eex$$ Ref. [Proof Without Words: Monotonicity of $\tan x/x$ on $(0 ...

  4. 关于Cygwin的x-Server的自动运行以及相关脚本修改

    常常需要用到远端服务器的图形工具,如果在windows端没用xserver的话,很多程序无法运行.一个特殊的例子,emacs在没用xserver的时候,是直接在终端中打开的,如果不修改cygwin.b ...

  5. Asp.Net 自定义控件实现图片的上传,浏览,删除功能

    4月的时候公司比较闲,就想着自己做点东西,其实主要是为了更加熟悉.Net,毕竟接触的时间不长,趁着有时间想提高提高.不过当我做到图片上传这个功能的时候,就有些停滞不前了,连续写了两天也达不到自己想要的 ...

  6. win8 VS控件信息

    <TextBlock x:Name="button_1" HorizontalAlignment="Center"  TextWrapping=" ...

  7. VC6兼容性及打开文件崩溃问题解决

    VC6虽然老,但是一些工程还非得用它打开,没办法…… 今天偶然用到,因为新装了系统,之前的问题又要重新解决一遍 在这记录下解决过程,方便以后查阅: 一.兼容问题: XP以上windows系统打开VC6 ...

  8. 初学JavaScript(入门一)

    javaScript是世界上最流行的脚本语言   在我们的手机.电脑设备上所浏览的所有网页,以及基于HTML5手机App的交互都是通过javaScript驱动的,所以javascript是前端工作的一 ...

  9. Azure杂七杂八系列(二) - 如何在Azure上重新配置VM

    我们经常遇到这样的问题,  对于已经建立的VM进行性能提升, 比如需要更好的虚拟机或者需要迁移到其他的虚拟网络 那么我们可以使用以下的方法进行修改. 1. 如图所示, TESTVMXX位于North ...

  10. PySpark操作HBase时设置scan参数

    在用PySpark操作HBase时默认是scan操作,通常情况下我们希望加上rowkey指定范围,即只获取一部分数据参加运算.翻遍了spark的python相关文档,搜遍了google和stackov ...