Answers for "wich color value will create a background color that is semi transparent"

CSS
3

background color semi transparent

.transparent {
    background-color: rgba(255, 255, 255, 0.5);
}
.transparent {
    opacity: 0.5;
}
Posted by: Guest on March-01-2020

Code answers related to "wich color value will create a background color that is semi transparent"

Browse Popular Code Answers by Language