CSS属性书写顺序

CSS属性书写顺序,建议遵循

Positioning(定位) -> Box model(盒模型) -> typographic (排版)->visual(视觉) ->other

  1. /* Positioning */
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:100;
    /* Box-model */
    display: block;
    float: right;
    width:100px;
    height:100px;
    /* Typography */
    font: normal 13px"Helvetica Neue", sans-serif;
    line-height:1.5;
    color:#333;
    text-align: center;
    /* Visual */
    background-color:#f5f5f5;
    border:1px solid #e5e5e5;
    border-radius:3px;
    /* Misc */
    opacity:1;

     

 





郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。