If i want
body {font-size:18 px}
for 1900 and above
body {font-size:16 px}
for 1024 and 1900
body {font-size:14 px}
This should do the work
@media only screen and (min-width: 320px) { body{ font-size: 12px; } }
@media only screen and (min-width: 768px) { body{ font-size: 14px; } }
@media only screen and (min-width: 1024px) { body{ font-size: 16px; } }
@media only screen and (min-width: 1900px) { body{ font-size: 18px; } }