How To Remove Background Color In Css

background color none
element {
background-color: transparent;
}
how to remove background color in css
.class {
background-color: transparent;
}
css background color
body {
background-color: green;
}
background color css rgb
body {
background-color: rgb(255,255,255);
}
remove bg color with css
//To override an existing css class
.class {
background: transparent;
}
background color using css
/* To apply color to background you have to use 'background-color' property and value of property is color name. */
html,body {
background-color: blue;
}

Leave a Comment