Comprehensive CSS Basics For Beginners:summary 02
1. Mobile Media Query
If you want to scope your css to mobile phone, you will certainly use media queries. Like so
@media all and (max-width: 500px) {
body {
background: blue
}
}
Basically, this is telling the browser to make the body blue for all t...
boratechlife.hashnode.dev2 min read