<style> .text { ............ } <style> <div class="text">Text</div> 

What should be the media query so that the div doesn't apply CSS properties on <480 screens?

    1 answer 1

    We need this media query:

     @media (min-width: 480px) { .text { \* свойства:значения *\ } }