I would like to use media queries to resize elements based on the size of a div element they are in. I cannot use the screen size as the div is jus
div
For mine I did it by setting the div's max width, hence for small widget won't get affected and the large widget is resized due to the max-width style.
// assuming your widget class is "widget" .widget { max-width: 100%; height: auto; }