firefox推荐与个人理解的css书写顺序

前端开发 作者: 2024-06-14 19:45:01
最近的工作中,遇到不少问题,其中一个问题我觉得是最重要的,那就是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.其它 引用某位人的话,”不管你用不用这个顺序,反正我是用了”。欢迎大家指正

原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_27094.html
书写顺序 css书写