width:16.5%;
float:left;
If I have a CSS property set to the code above. How do I "reset" it?
I want to have it with no float and no width setting. Do I use initial or inherit?
@media (max-width: 475px) and (min-width: 320px) {
#myid {
width:initial;
float:none;
}
}