I have this css:
.realiser-devis { text-transform: uppercase; font-size: 23px; font-weight: 700; margin: 0; color: #fff; }
and i want to reduce the font size if the screen width is less than 1600 px
@media only screen and (max-width:1600px) { .realiser-devis { font-size: 12px; } } the problem is that the css inside the media query is working without satisfying the condition; the width of my screen is 1800px and the font size is 12 px
is there somthing i'm missing ?
Regards
Amir