Fixed gradient background with css

前端 未结 4 1616
盖世英雄少女心
盖世英雄少女心 2020-12-24 05:49

I would like for my page to have a gradient background flowing from top to bottom. I want the background to act like a fixed image in that the gradient stretches from the to

4条回答
  •  旧时难觅i
    2020-12-24 06:27

    Another way of doing this (with actual image):

    body {
      background-attachment: local; // or 'fixed' here
      background-image: url(fancy.jpg);
      background-size: 100% 100%;
      overflow:auto;
      box-sizing:border-box;
      width:100%;
      height:100%;
      margin:0; 
    }
    

提交回复
热议问题