Responsive css related question | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

24th Jan 2020, 11:29 AM
Andrei I
Andrei I - avatar
2 Answers
+ 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
24th Jan 2020, 11:34 AM
HNNX 🐿
HNNX 🐿 - avatar
+ 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.
24th Jan 2020, 11:43 AM
Gordon
Gordon - avatar