美文网首页
css背景blackground

css背景blackground

作者: huhu502 | 来源:发表于2016-08-28 15:37 被阅读30次
    • 1)背景图片
      **background-image: **url(1.jpg)
      1,div{
    
            background-image: url(1.jpg);
            height: 500px;
           }
          2,<div></div>
    
    • 2)设置背景平铺
      background-repeat: no-repeat;
      repeat 默认值,重复
      no-repeat 不平铺,一张图片
      repeat-x 横向平铺
      repeat-y 纵向平铺
    • 3)设置背景位置
      background-position: right bottom; 右下脚
      1,left|right|top|bottom|center
      2,还可以设置数字
      background-position:10px 30px;
      水平方向10px和垂直方向30px
      只写10px,垂直方向是水平居中
    • 4)设置背景是否固定
      background-attachment: fixed;
      scroll 默认值 滚动
      fixed 背景固定
    • 5)背景属性连写
      没有先后顺序,没有数量限制
     background:  red url("1.jpg") no-repeat 30px 40px;

    相关文章

      网友评论

          本文标题:css背景blackground

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