Order meaning of padding/margin style

4 possible situations, for example:

 padding:10px;                                四个内边距都是10px
 padding:5px 10px;                      上下5px 左右10px
 padding:5px 10px 15px;                上5px 右10px 下15px   左因为缺省与右相等,则为10px
 padding:5px 10px 15px 20px;       上5px 右10px 下15px  左20px

The different writing numbers of margin represent the same reason as above.

Guess you like

Origin blog.csdn.net/weixin_43131046/article/details/114063710