The background color for some buttons appears to be black and when I checked the value in the browser, it shows as #0000
, whereas my CSS has background-color: transparent
, I tried changing the opacity to 0, but even that doesn't seem to work.
Note: I am not using any background-image
: url property, its just background-color
.
I tried searching here for other answers but they don't seem to work.
Hamburger icon:
My CSS:
.menu-toggle {
background-color: #0000;
border: none;
color: #333;
display: block;
float: left;
margin-left: .2em;
padding: .5em;
}
Whereas in my code I have written it to be transparent.