美文网首页
给网页设置全屏背景图片

给网页设置全屏背景图片

作者: 守星的犬 | 来源:发表于2018-09-17 16:22 被阅读8次

    首先设置页面宽高

    html,body{
        width:100%;
        height:100%
    }
    

    添加设置背景图

    body{
      width:100%;
      height:100%;
      background-size: cover;
      position:absolute; 
      background-image: url('../../assets/images/bg.jpg');
      background-position:50% 50%;
      background-repeat :no-repeat;
      background-attachment:fixed;
    }
    

    搞定。

    相关文章

      网友评论

          本文标题:给网页设置全屏背景图片

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