console
<div>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Libero odit unde reiciendis nostrum delectus sint cupiditate iste dolorem! Corrupti aut hic aperiam blanditiis doloribus nobis ut libero placeat ullam facilis.
</div>
<style type="text/css">
@media only screen and (max-width: 320px) {
div{
background-color: blue;
}
}
@media only screen and (min-width: 321px) and (max-width: 640px) {
div{
background-color: red;
}
}
@media only screen and (min-width: 641px) and (max-width: 1002px) {
div{
background-color: yellow;
}
}
@media only screen and (min-width:1003px){
div{
background-color: black;
color: white;
}
}
</style>