web开发中css书写规范的方法

来源:爱站网时间:2019-06-02编辑:网友分享
在web开发中我们要什么使css的书写更规范呢?我们在整个开发中只有写出最适合团队开发的就最好了,那么爱站小编现在带大家去了解web开发中css书写规范的方法。

在web开发中我们要什么使css的书写更规范呢?我们在整个开发中只有写出最适合团队开发的就最好了,那么爱站小编现在带大家去了解web开发中css书写规范的方法。
根据经验总结出以下几点规范,请大家参考一下:
一.所有的CSS的尽量采用外部调用:这是我认为最重要的一点,因为这影响加载页面时的速度.
<LINK href="style/style.css" rel="stylesheet" type="text/css">
书写时重定义的最先,伪类其次,自定义最后(其中a:link a:visited a:hover a:actived 要按照顺序写)便于自己和他人阅读。
为了保证不同浏览器上字号保持一致,字号建议用点数pt和像素px来定义,pt一般使用中文宋体的9pt和11pt,px一般使用中文宋体12pt 和14.7px 这是经过优化的字号,黑体字或者宋体字加粗时,一般选用11pt和14.7px 的字号比较合适。

二. 样式名均以字母开头,后缀可包含字母、数字、下划线和中划线,样式名尽量采用通俗易懂的英文单词组成,如.img .body-bg #left_nav等(后附一些通用的命名标准);对于公用的自定义样式可适当加入模块标识或comm标识,以免与独立模块样式产生冲突!
三.凡html内置标签及CSS属性名称均采用大写字母书写,而自定义样式名称及CSS属性值则均采用小写字母写书;如:P{...} BODY{...} .p1{COLOR: red} .li_bg{MARGIN: 0px;} 等;
四.能采用缩写的样式属性尽量采用缩写形式,如margin,padding,border等;
(原则:上-右-下-左 --> MARGIN: 1px 2px 3px 4px 上-(右左)-下 --> MARGIN: 1px 2px 3px
(上下)-(左右)--> MARGIN: 2px 4px 上右下左 --> MARGIN: 4px;
字体颜色类: #000000 --> #000 #00FFDD --> #0FD;
附:缩写参考
There are a lot of CSS shorthand properties.
* font
font: font-style font-variant font-weight font-size/line-height font-family;
* margin
margin: margin-top margin-right margin-bottom margin-left;
* padding
padding: padding-top padding-right padding-bottom padding-left;
* border
border: border-width border-style border-color;
* border-top
border-top: border-top-width border-top-style border-top-color;
* border-right
border-right: border-right-width border-right-style border-right-color;
* border-bottom
border-bottom: border-bottom-width border-bottom-style border-bottom-color;
* border-left
border-left: border-left-width border-left-style border-left-color;
* border-width
border-width: border-top-width border-right-width border-bottom-width border-left-width
* background
background: background-color background-image background-repeat background-attachment background-position;
* list-style
list-style: list-style-type list-style-position list-style-image;
* outline
outline: outline-color outline-style outline-width;
五. 在书写样式的过程中,同一划分模块的样式尽量写在一起,并适当加入注释,以方便阅读和查找;如<-- Footer --><-- End Footer -->或者/* Footer */ /* End Footer */
六.样式抽象,我们可以把一些常用的样式抽象出来,做为一类样式;如COLOR: red FLOAT:left FONT-WEIGHT: bold等 这些属性我们可能要经常用到,我们是否需要为每个需要应用这个样式的元素都单独写上一个样式呢?答案是明确的:不需要; 我们可以定义: .red{ COLOR:red } .fleft{FLOAT:left} 这样是不是要方便多了^_^

七. 效率规则:(css属性书写顺序)
1.显示样式
display/position/float/clear
2.自身样式
width/height/margin/padding/border/background
3.内容样式
line-height/text-align/font系列(font-size/font-weight)/color/text-decoration/vitical-align

八.css样式的命名:
对于css样式表的命名书写规范,请参考 http://www.aizhan.com/css/22091.html
关于web开发中css书写规范的方法就介绍到这里了,当然了很多的css样式书写范是大同小异的。需要不断的去归纳总结。

上一篇:清理CSS样式的工具介绍

下一篇:如何减少图片HTTP请求

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载