Front End Cheat-Sheet
Front End Cheat-Sheet
MEDIA QUERIES
@media(max-width: 320px)
@media(min-width: 901px)
@media(min-width: 600px) and (max-width: 900px)
Responsive design is a set of best practices that
allows your webpage to be fluid and change its
appearance and layout depending on the device REFERENCES
and screen width. We can achieve this with CSS
● Udacity’s Front-End Nanodegree style guide
Grid, Flexbox, and media queries.
● Example of CSS Grid and Flexbox properties
● Media query documentation
● Responsive design documentation