Rodri's CSS
News 🗞️New media query range syntax it's here!
Now we have in CSS new media queries syntax with the logical operator of javascript:
_10@media (width >= 600px) {_10 /*...styles*/_10}_10_10/* When the browser is between 400px - 1000px */_10@media (400px <= width <= 1000px) {_10 /*...styles*/_10}