CSS学习20-CSS属性书写顺序
Posted Brianxq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS学习20-CSS属性书写顺序相关的知识,希望对你有一定的参考价值。
CSS属性书写顺序
建议遵循一下顺序:
- 布局定位属性:display / position / float / clear / visibility / overflow(建议 display 第一个写,毕竟关系到模式)
- 自身属性:width / height / margin / padding / border / background
- 文本属性:color / font / text-decoration / text-align / vertical-align / white- space / break-word
- 其他属性(CSS3):content / cursor / border-radius / box-shadow / text-shadow / background:linear-gradient …
示例
.jdc {
/* 布局定位属性 */
display: block;
position: relative;
float: left;
/* 自身属性 */
width: 100px;
height: 100px;
margin: 0 10px;
padding: 20px 0;
/* 文本属性 */
font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif;
color: #333;
/* 其他属性 */
background: rgba(0,0,0,.5);
border-radius: 10px;
}
以上是关于CSS学习20-CSS属性书写顺序的主要内容,如果未能解决你的问题,请参考以下文章