How to overlay image with color in CSS?

前端 未结 11 815
轻奢々
轻奢々 2020-12-14 13:51

Objective

I want a color overlay on this header element. How can I do this with CSS?

Code

HTML

11条回答
  •  感动是毒
    2020-12-14 14:30

    In helpshift, they used the class home-page as

    HTML

    ...

    CSS

    .home-page {
        background: transparent url("../images/backgrounds/image-overlay.png") repeat 0 0;
        background: rgba(39,62,84,0.82);
        overflow: hidden;
        height: 100%;
        z-index: 2;
    }
    

    you can try similar like this

提交回复
热议问题