Responsive Web sites/app? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Responsive Web sites/app?

HOW CAN I MAKE MY WEBSITE LOOK GOOD ON ALL SCREEN SIZES PLS SUGGEST SOME ONLINE TUTORIALS OR SOME YOUTUBE VIDEOS AND SOME GOOD YOUTUBE CHANNELS FOR LEARNING WEB DEVELOPMENT (I M A BEGINNER )

16th Dec 2017, 1:51 PM
Z O R O
Z O R O - avatar
7 Answers
+ 4
look for media queries
16th Dec 2017, 1:59 PM
SalahDEV
SalahDEV - avatar
+ 3
DevTips Quentin Watt Tutorails The Net Ninja Derek Banas
16th Dec 2017, 2:06 PM
SalahDEV
SalahDEV - avatar
+ 3
W3Schools has some very helpful advise.
16th Dec 2017, 2:09 PM
Richard Myatt
Richard Myatt - avatar
+ 2
Step 1: put this: <meta name="viewport" content="width=device-width, initial-scale=1.0" /> in your head tag. This helps scaling Step 2: add this: @media only screen and (max-width: 700px) { } to your css. Anything between those is phone-only. In there, add scaling such as larger texts and buttons You can also change some layout. Use % in your layout. Don't use px. PX is pixels on the screen and every screen has a different amount.
3rd Jan 2018, 3:54 PM
Lil Taco
Lil Taco - avatar
+ 1
any recommended youtube channel
16th Dec 2017, 2:02 PM
Z O R O
Z O R O - avatar
+ 1
tx
16th Dec 2017, 2:06 PM
Z O R O
Z O R O - avatar
+ 1
Thank you for information. using percent rather than px is very helpful.
25th May 2018, 7:52 AM
Mahmudur Rahman Ashik
Mahmudur Rahman Ashik - avatar