0
Responsive css related question
Should i make a project for mobile first and adjust it for pc or should make it for pc and then adjust it for mobile
2 ответов
+ 4
You'll hear different approaches - for responsive design it used to be always mobile first then adapt to bigger screen sizes - this way you don't cut out content but add to it instead.
However, I've seen that this approach isn't always recommended, especially for beginners.
https://medium.com/@Vincentxia77/what-is-mobile-first-design-why-its-important-how-to-make-it-7d3cf2e29d00
+ 2
1. Responsive Design involves many aspects: fonts, navigation, etc.
See this tutorial for the basics.
https://code.sololearn.com/W3gS00IGw160/?ref=app
2. No matter mobile-first or desktop-first, you have to handle both mobile and pc userview.
The difference is the sequence of CSS statements. And the sequence media query.
3. With new frameworks, such as Angular or Tailwind, you can handle both views at the same time.