美文网首页
css margin缩写简写巧妙记法

css margin缩写简写巧妙记法

作者: 一笑倾城Tan | 来源:发表于2018-12-13 15:15 被阅读25次

CSS样式上下、左右、上下左右缩写简写优化

一、记忆要领:
上(top)
左(left) 右(right)
下(bottom)
按照上面图形:顺时针排序
即为 margin: top right bottom left

二、举例说明

  1. top right bottom left(值都不同)
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom:30px;
    margin-left: 40px;
    缩写:margin:10px 20px 30px 40px;

  2. top right bottom left(值相同)
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom:10px;
    margin-left: 10px;
    缩写:margin:10px;

  3. top right bottom left (right left 值相同 )
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom:30px;
    margin-left: 20px;
    缩写:margin:10px 20px 30px;
    附加:
    原始:margin-top:5px; margin-bottom:6px; margin-left:4px
    缩写:margin:5px 0 6px 4px或margin:5px auto 6px 4px

  4. top right bottom left (top bottom 值相同 无)
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom:10px;
    margin-left:30px;
    缩写:margin:10px 20px 30px;
    说明:应该没有此类缩写,上下一样有点不可实现上下一样的话就是垂直居中了对吧?不然和第3点缩写后都是3个值,看不出来是左右相同还是上下相同的缩写
    有不对的地方欢迎大家指正!

  5. top right bottom left (top 和bottom 值相同,right 和left 值相同 )
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom:10px;
    margin-left:20px;
    缩写:margin:10px 20px;
    附加:
    margin:0 auto;横向居中; (上下为0,左右自动,则水平居中)
    margin:auto 0;纵向居中;(左右为0,上下为0,则垂直居中

padding的距离设置缩写同理哦

欢迎关注我的微信公众号


相关文章

  • css margin缩写简写巧妙记法

    CSS样式上下、左右、上下左右缩写简写优化 一、记忆要领:上(top)左(left) ...

  • HTML5学习笔记(四)

    一. CSS 代码缩写,占用更少的带宽 盒模型代码简写:再说盒模型时外边框(margin),内边框(padding...

  • CSS 自学笔记(下)

    传送门: CSS 自学笔记(上) CSS 自学笔记(中) CSS 自学笔记(下) 代码简写 布局缩写 paddin...

  • CSS学习心得(三)

    CSS Margin(外边距) 简写margin:100px 50px;表示上下边距100px,左右边距50px....

  • CSS代码缩写

    CSS代码缩写-占用更少的带宽 盒模型代码缩写 盒模型中外边距(margin)、内边距(padding)和边框(b...

  • css中的内外边距和背景

    css中margin、padding和background margin与padding margin常用代码有 ...

  • 编写高质量代码之css学习

    padding和margin的简写方式 顺序是按照顺时针来的 css子选择器的使用注意事项:使用子选择器,会增加c...

  • 2.在一个div元素中的居中显示

    方法一、margin:auto法 css代码 html代码 方法二、负margin法 css代码 html代码 方...

  • css简写

    属性简写 CSS 规范定义简写属性的目的在于将那些关于同一主题的常见属性的定义集中在一起。如我们已经说过的marg...

  • css第三节(2)

    1、css外边距margin margin-top:上外边距 margin-right:右外边距 margin-b...

网友评论

      本文标题:css margin缩写简写巧妙记法

      本文链接:https://www.haomeiwen.com/subject/dfcbhqtx.html