css初始化代码怎么写

1.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; } 3. 参考新浪、雅虎/* 新浪全局样式 */ 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;}/* 雅虎全局样式 */ 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; }。

2.CSS初始化的代码怎么写

最耗资源的,最简单的 * { padding: 0; margin: 0; border: 0; } 选择性初始化举例(综合)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; } 3. 参考新浪、雅虎 /* 新浪全局样式 */ 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;} /* 雅虎全局样式 */ 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; }。

3.html+css 谁有css的初始化代码

/* CSS Document */

html, body, div, span, object, iframe,h1, h2,

h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn,

em, img, ins,kbd, q, samp,small, strong, sub, sup, var,b, i,dl, dt, dd,

ol, ul, li,fieldset, form, label, legend,table, caption, tbody,

tfoot,thead,tr, th, td,article, aside, canvas, details, figcaption,

figure, footer, header, hgroup, menu, nav, section, summary,time, mark,

audio, video {

margin:0;

padding:0;

border:0;

outline:0;

font-size:100%;

vertical-align:baseline;

background:transparent;

outline-style:none;/*FF浣跨敤*/

}

body {

line-height:1;

}

a{

margin:0;

padding:0;

border:0;

font-size:100%;

vertical-align:baseline;

background:transparent;

}

a:hover,a:focus{

text-decoration:none;

bblr:expression(this.onFocus=this.blur());/*IE浣跨敤*/

outline-style:none;/*FF浣跨敤*/

}

table {

border-collapse:collapse;

border-spacing:0;

}

input, select {

vertical-align:middle;

}网络上有很多这种初始化的代码,你也要看你自己需要!最好没一句都看懂,有个印象。否者也会影响到后面的布局,你却找不到原因。

4.求一份腾讯网css初始化的代码

你所指的是CSS RESET吧?

腾讯

/*

body{margin:0;padding:0 0 12px 0;background:#fff;font-size:13px;line-height:22px;}

div,p,li{font-family:Verdana,婼;font-size:13px;}

form,ul,li,p,h1,h2,h3,h4,h5,h6{margin:0;padding:0;}

input,select{font-size:12px;line-height:16px;}

img{border:0;}

ul,li{list-style-type:none;}

li{font-size:13px;}

.tc{text-align:center;}.tl{text-align:left;}.tr{text-align:right;}

.dis{display:block;}.undis{display:none;}

.fl{float:left;}.fr{float:right;}.cl{clear:both;}

.fh{height:22px;}.fb{font-weight:bold;}.fnb{font-weight:200;margin-left:-1px;}

.fc30{color:#303030;font-family:"宋体";}.fchot{color:#ff0700}

.f11{font-size:12px;font-family:tahoma;}

h4{font-weight:200;font-size:13px;cursor:pointer;}

h4 a{width:100%;heihgt:100%;display:block;}

a{color:#00007F;text-decoration:none;}

a:hover{color:#bd0a01;text-decoration:underline;}

a.lcblue{color:#0F479C;}

a.lchot{color:#bd0a01;}

.lchot{color:#bd0a01;}

网上找的,看看是不是你想要的。

5.CSS(css reset)重置到底要怎么写

(文章来源于:

玉溪无痛人流

因为各种浏览器的算法不一样,从而导致CSS在不同的浏览器中存在一部分不一样的效果,CSS重置就是写一段初始化CSS将这些浏览器不同的初始化设置指定同一种显示效果。

使用了CSS重置以后,各不同浏览器的初始化设置将一致,后面再写CSS的时候就不会因为浏览器的初始化不同从而导致显示的效果不一致了。

CSS重置使用的误区

下面这段代码是网上很多网站CSS开始之前使用的CSS重置代码,看着就让人头晕,可能连网站设计者自己都搞不懂里面很多标签的含义。

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, sub, sup, tt, 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: 0;font-size: 100%;

font: inherit;

vertical-align: baseline;}

我们写CSS重置要考虑到自己的网站的具体设计,如上面那段CSS代码所示,你的网站可能只有用到里面的其中一小部分标签,但是你却把所有的全部复制到你的CSS里面,你考虑过CSS渲染的问题吗?对你没用的东西你为什么要写进去呢?写程序是一件很严谨的事情,你写的每一段代码你至少需要知道其含义是什么,原样复制连自己都弄不清楚是什么意思有想到会造成什么后果吗?

6.CSS初始化问题

CSS初始化的代码一般要控制常见的页面元素比如body div table等的大小,位置和背景色等夜页面初始加载的样式:

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td { margin:0; padding:0; }

body { font-size:12px; color:#666; font-family:Verdana, Microsoft YaHei, Simsun; background:#fff; line-height:24px; }

fieldset, img { border:0; }

ol, ul { list-style:none; }

h1, h2, h3, h4, h5, h6{ font-size:100%; }

em { font-style:normal; }

input, button, select, textarea { outline:none; }

textarea { resize:none; } //禁用了文本的拖拉,尤其在谷歌下

p{ text-align:justify; text-justify:distribute;} //为了使文本段落左右两边对齐

css初始化代码怎么写

转载请注明出处育才学习网 » css初始化代码怎么写

知识

小学生的梦想卡怎么写

阅读(436)

本文主要为您介绍小学生的梦想卡怎么写,内容包括梦想卡的内容怎么写,小学三年级梦想卡怎么写,小学生心愿卡内容写什么。1,又到了路口。未来总是有方向,但是却还没有头绪。我们迎来一个个新的开始,又和开始说了再见,时光荏苒,又是一个秋。我们带

知识

三年级日记一则怎么写

阅读(254)

本文主要为您介绍三年级日记一则怎么写,内容包括小学生三年级曰记一篇怎么写,三年级曰记作文怎么写,三年级的日记怎么写。三年级记事日记:今天,妈妈教我学洗衣服。一开始我以为很容易,妈妈说:“我们先接一盆水,然后再放一点洗衣粉,用手把洗衣粉搅

知识

护士长优秀事迹怎么写

阅读(229)

本文主要为您介绍护士长优秀事迹怎么写,内容包括优秀护士事迹怎么写,评选优秀护士主要先进事迹怎么写,护士主要事迹怎么写。原发布者:Susce优秀护士先进事迹材料:优质护理服务之她行在护理和护理管理工作中,刘建英同志爱岗敬业,本着艰苦奋斗和

知识

java代码目录结构怎么写

阅读(231)

本文主要为您介绍java代码目录结构怎么写,内容包括使用java读取指定路径的目录结构;帮我把具体的代码,例子写出来,,java项目代码结构说明书怎么写,Java实现的多层目录结构呢。Node:目录节点,具备节点属性信息 NodeStore:平面目录节点持久化接口

知识

树懒怎么写英语怎么写

阅读(207)

本文主要为您介绍树懒怎么写英语怎么写,内容包括树懒英文怎么写,树懒英文怎么读,求疯狂动物城树懒那段英语台词,在线等。Nice tosee youtoo.Flash,Id love you to meet my friend.Darling,I seem

知识

懂不了用英语怎么写

阅读(219)

本文主要为您介绍懂不了用英语怎么写,内容包括不懂就不要懂了用英语怎么说,明白不的英语怎么写,我不太懂英语,英文怎么写。“你明白了吗?”英语表达可以有以下几个说法:Are you with me?2、Does it make sense?3、Are you

知识

道教演讲稿怎么写

阅读(305)

本文主要为您介绍道教演讲稿怎么写,内容包括道家的怎么写,道教申请书怎么写请问加入道教协会的申请书怎么写加入道教协会,怎样写道教宫观落成致谢词。道]祈 赐文 昌科 甲 文 疏 伏 以 天清地灵日月光明智慧玄窍 一泗天卞 南胆部洲 主事 家

知识

divcss里文字上下滚动的代码怎么写

阅读(275)

本文主要为您介绍divcss里文字上下滚动的代码怎么写,内容包括div中的文字滚动效果的代码怎么写,不要jsp的,就直接用属性或者更,div中有一行文字,怎么实现部分文字上下滚动效果,html中上下滚动的文字代码,举例。<HTML> <HEAD> <META http-eq

知识

ftp获取本地路径怎么写

阅读(227)

本文主要为您介绍ftp获取本地路径怎么写,内容包括怎么获取ftp的路径,怎么获取ftp的路径,java读取本地文件路径怎么写。问一下,你是想做ftp上传下载么?首先你需要安装一个ftp服务端程序,启动起来,然后下载一个ftp客户端程序,测试能不能连接,首先这

知识

宁愿的英语单词怎么写

阅读(224)

本文主要为您介绍宁愿的英语单词怎么写,内容包括宁的英文怎么写,单词的英文怎么写,1至100的英文怎么写。单词的英文表示为:word2、word的英式发音为[wɜ:d],美式发音为[wɜ:rd] ,意思有:单词;话语;诺言;消息,措辞,用词;

知识

拧螺丝的拼音怎么写的

阅读(283)

本文主要为您介绍拧螺丝的拼音怎么写的,内容包括拧螺丝的拧怎么读,拧脑袋的读音拧螺丝的读音拧开的读音拧毛巾的读音,拧开螺丝的读音。拧螺丝的拧的拼音是nǐng,拧的意思是控制住物体并向里转或向外转。拧拼 音 :nǐng níng nìng 部 首:扌笔

知识

co.ltd分公司怎么写

阅读(289)

本文主要为您介绍co.ltd分公司怎么写,内容包括总公司的英文缩写为CO.LTD,分公司应该如何写,公司名称中,Co.,Ltd.是什么的缩写,请列举co.,ltd的几种正确写法。Co. LTD 是 Company Limited 即“有限责任公司”的缩写,并非“总公司”。总公司一

知识

construct的名词怎么写

阅读(1010)

本文主要为您介绍construct的名词怎么写,内容包括他会将这个词的名词,动词,形容词,副词的形式归在一起比如查,assure的名词怎么写,英语单词“建设”怎么写。collection [kəlekʃən] n. 收藏品,收集物 例句: Is the collection going to be

知识

ong字怎么写

阅读(290)

本文主要为您介绍ong字怎么写,内容包括“ong”拼音怎么读,读音为ong的字,押ONG韵的字。只有一个,如下图:

知识

java代码目录结构怎么写

阅读(231)

本文主要为您介绍java代码目录结构怎么写,内容包括使用java读取指定路径的目录结构;帮我把具体的代码,例子写出来,,java项目代码结构说明书怎么写,Java实现的多层目录结构呢。Node:目录节点,具备节点属性信息 NodeStore:平面目录节点持久化接口

知识

js网页跳转代码怎么写

阅读(238)

本文主要为您介绍js网页跳转代码怎么写,内容包括js跳转代码怎么写,js网页跳转的代码,JS代码怎么跳转到另一个页面呢。javascript常用的页面跳转方法为:window.location.href = some_url;下面举例演示点击按钮后,延迟3

知识

dw如何获取代码怎么写

阅读(235)

本文主要为您介绍dw如何获取代码怎么写,内容包括如何用DW获取网页上需要的html代码,如何用dw获取网页上需要的html代码,用dw编写代码如何查看。JS代码如下:<script language="javascript">var mydate = new Date();var myy

知识

thinkphp怎么写代码

阅读(248)

本文主要为您介绍thinkphp怎么写代码,内容包括如何写thinkphp的注册与登录代码,thinkphp中,index方法的代码怎么写啊,如何写thinkphp的注册与登录代码。两套页面表单,POST 请求 控制器的方法,注册,接受POST过来的值,判定用户是否存在, 或者用aja

知识

csql分页代码怎么写

阅读(197)

本文主要为您介绍csql分页代码怎么写,内容包括c#分页代码,分页显示的SQL代码,c#分页代码。那个东西要自己写。。我写了一个,挺复杂的。。。给你做参考吧。。。。<% //分页 int allWriteBackForumNum =

知识

代码生成器怎么写

阅读(241)

本文主要为您介绍代码生成器怎么写,内容包括如何制作代码生成器,代码生成器生成代码的依据,怎样编写Asp.net代码生成器。代码生成器生成代码,分三层: 数据层、业务层、界面层;1.数据层:①数据服务2.业务层:②业务逻辑+数据工厂,③业务实体3.界面

知识

css样式导航按钮页面当前状态怎么写

阅读(242)

本文主要为您介绍css样式导航按钮页面当前状态怎么写,内容包括怎么写css能使导航保持被点击的状态(页面不需要跳转)js的也行,本,css导航被选中的状态怎么写,怎么用css样式来写导航按钮就是首页关于我们之类的鼠标移动到某位。<a href="#" class

知识

jsp删除代码怎么写

阅读(235)

本文主要为您介绍jsp删除代码怎么写,内容包括jsp怎么写增删改查代码,jsp中删除留言的servlet中的代码怎么写,jsp点击删除然后出来判断是否删除如果点是就删除点否就不删除这个。下面的代码即可实现(对数据库的操作):<%@ page language="java" co

[/e:loop]