I'm currently using a js/jq resize event to apply a css rule to a horizontal menu (of variable width) when it becomes too large for the screen. The menu however wraps momentarily before the new rule is applied.
Ideally I'd like to measure the menu width and change the break point of a media query!
@media screen and (min-width: THIS-VALUE){
New Rules
}
Is this possible??
Thanks in advance.
Chris GW Green