background image with overlay css

前端 未结 4 938
刺人心
刺人心 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 11:01

    you can use this code

    HTML

    CSS

    #wrapper {
        position: relative;
    }
    .overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0,0,0,.5);
        z-index: 999;
    }
    

提交回复
热议问题