+ 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 )
7 Answers
+ 4
look for media queries
+ 3
DevTips
Quentin Watt Tutorails
The Net Ninja
Derek Banas
+ 3
W3Schools has some very helpful advise.
+ 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.
+ 1
any recommended youtube channel
+ 1
tx
+ 1
Thank you for information. using percent rather than px is very helpful.