<style> tags in the Head Code section.Adding custom CSS media queries in Webflow can help you control the design for different screen sizes beyond the built-in breakpoints.
<style> tags.<style> @media only screen and (max-width: 600px) { .your-class { display: none; } } </style>
Add custom CSS media queries by editing the Head Code section in Webflow’s Project Settings, then wrap your CSS rules with <style> tags. Save and publish to see the changes in action.