Is there a passive method (i.e. not JS) to make a div disappear, when its width is less than a certain value?
Something like...
.my-div[width < 120px] {
display: none;
}
Edit #1
I'm already using media queries for responsive design, but the point at which I want to hide this div is in between two break points. I'll make another media query if I must, but I was hoping for some niche secret CSS trick.