How website's layout changes while using computer and mobile? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How website's layout changes while using computer and mobile?

There are so many websites which's layouts are different while using computer and mobile. facebook.com, aliexpress.com are example. So, do I have to code two different time for two different device? or there is an amother way?

12th Feb 2020, 6:18 AM
RH Tasin
RH Tasin - avatar
3 Answers
+ 6
use this meta tag and it should help for responsive web design <meta name="viewport" content="width=device-width, initial-scale=1.0">
12th Feb 2020, 6:21 AM
BroFar
BroFar - avatar
+ 5
Use <meta> tag for responsive web design. This helps to change the width of the output screen according to the device used by you Insert this code: <meta name = "viewport" content = "width=device-width, initial-scale = 1.0">
12th Feb 2020, 6:32 AM
Tanmay Gupta
Tanmay Gupta - avatar
+ 3
And also except meta tag you need to use @media in CSS.
12th Feb 2020, 8:05 AM
A͢J
A͢J - avatar