我是靠谱客的博主 土豪高跟鞋,最近开发中收集的这篇文章主要介绍firefox推荐与个人理解的css书写顺序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近的工作中,遇到不少问题,其中一个问题我觉得是最重要的,那就是css的书写顺序,他可以体现一个前端工作者的思续。如果您看到本文,请不要再想到哪个属性就写哪个属性。

先来看一下firefox推荐的书写顺序 
* mozilla.org Base Styles
* maintained by fantasai
* (classes defined in the Markup Guide -http://mozilla.org/contribute/writing/markup)
*/
/* Suggested order:
//显示属性
* display
* list-style
* position
* float
* clear
//自身属性
* width
* height
* margin
* padding
* border
* background
//文本属性
* color
* font
* text-decoration
* text-align
* vertical-align
* white-space
* other text
* content
*
*/ 
从上面推荐的顺序可以看出,非常的有条理。上面推荐的顺序并没有把更加详细的属性写进去,比如:top,right,bottom,left等,也许有人会问,这样些对性能有什么影响吗?我非常遗憾的告诉你,我也不知道,但我想,有条理的做事才是正确的(也许你有更好的方法)。

我的理解:
1.显示属性:display||visibility||list-style(list-style-type、list-style-image、list-style-position)||overflow
2.定位及浮动属性:position||top||right||bottom||left||float||clear
3.盒模型:width||height||margin||padding||border
4.背景:background(background-image、background-position、background-repeat、background-attachment)
5.文字属性:font-style||font-variant||font-weight||font-size||font-family||color
6.文本属性:text-indent||text-align||vertical-align||letter-spacing||word-spacing||text-transform||text-decoration||text-shadow
7.其它

引用某位人的话,”不管你用不用这个顺序,反正我是用了”。欢迎大家指正

最后

以上就是土豪高跟鞋为你收集整理的firefox推荐与个人理解的css书写顺序的全部内容,希望文章能够帮你解决firefox推荐与个人理解的css书写顺序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(185)

评论列表共有 0 条评论

立即
投稿
返回
顶部