background image with overlay css

前端 未结 4 1000
刺人心
刺人心 2021-01-28 10:21

How I design background image with overlay in CSS like this example image.

here the code. i want to add tour class to background image and overlay effect. <

4条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-28 10:39

    you should have added more information in to the question, but Is this what you want?

    CSS for this:

    .background {
      background:url('BackgroundImage.png');
    }
    
    .layer {
      background-color: rgba(248, 247, 216, 0.7)
      width: 100%;
      height: 100%;
    }
    

    HTML for this:

    Hope it helps :)

提交回复
热议问题