Is there a way to modify the attributes of a CSS class if the browser window is less than 600px in height? The current default properties are as follows:
.side { height:400px; width:700px; }
I am looking to update it to:
.side { height:300px; width:550px; }
when the height of the window is below 600px.
Any suggestions on how to achieve this would be appreciated. Thank you.