Answers for "make the container transparent"

CSS
0

container transparent text opaque

.mycontainer {
    background: rgb(60, 60, 60);
    background: rgba(60, 60, 60, 0.4);
}

.mycontainer a {
    color: #fff;
}
Posted by: Guest on April-03-2020

Code answers related to "make the container transparent"

Browse Popular Code Answers by Language