Answers for "background color remove css"

CSS
2

how to remove background color in css

.class {
   background-color: transparent;
}
Posted by: Guest on July-18-2021
0

remove bg color with css

//To override an existing css class
.class {
	background: transparent; 
}
Posted by: Guest on October-12-2021

Code answers related to "background color remove css"

Browse Popular Code Answers by Language