美文网首页
background简写笔记

background简写笔记

作者: eks | 来源:发表于2018-05-31 10:34 被阅读30次

    css设置元素背景常用的属性:

    background-color                    // 背景色
    background-image                  // 背景图
    background-repeat                  // 如何重复背景图像,repeat/repeat-x/repeat-y/no-repeat/inherit
    background-attachment          // 背景图像是否固定或者随着页面的其余部分滚动,fixed/scroll
    background-position                // 背景图像的位置
    background-size                      // 背景图片的尺寸
    
    

    常用基本就这6个,
    简写顺序就是以上顺序,如:

    body{
    background: aquamarine url("https://cdn2.jianshu.io/assets/web/nav-logo-4c7bbafe27adc892f3046e6978459bac.png") no-repeat fixed top center / 100px 50px;
    }
    
    

    这里要注意的是,position和size之间必须要斜线隔开

    相关文章

      网友评论

          本文标题:background简写笔记

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