How to remove ::before from my html page it show in body tag not allowing me to interact me with web app . showing in console but no code shows in css files here are the code snippet that show in console
body:before {
content: "";
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: #2a5555;
opacity: 0.7;
z-index: 1;
}
you can use
body:before {
all: initial;
}
to put all properties in body:before to their inital value them add your specific rules if you have
body:before {
content: "";
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: #2a5555;
opacity: 0.7;
z-index: 1;
}
body:before {
all: initial;
/* other specific rules */
}