Answers for "what does it mean to overlay a background"

CSS
0

css background overlay

.image:before{
    content: "";
    background: rgba(0,0,0,.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 24px;
}
Posted by: Guest on February-17-2021

Code answers related to "what does it mean to overlay a background"

Browse Popular Code Answers by Language