background image with overlay css

前端 未结 4 979
刺人心
刺人心 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:43

    Try Below Code

    HTML

    Style

    .img-wrapper {
        position: relative;
    }
    .img-wrapper:after {
        content: "";
        background-color: rgba(37,131,173,0.5);
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    

提交回复
热议问题