I have the following code:
.imgleft{
background-image: url("logo.png");
background-size: 100%;
float: left;
}
... but I want to make my website responsive, so when my width is smaller than 650 I want my image gone.
I tried following code, but it doesn't work :
@media screen and (max-width: 650px) {
.imgleft{
background-color: none;
}
}