+ 1
Why does my sites look weird on different screens
Guys, please why does my website that I coded well on my PC look extra large on my phone and smaller on wider screens with large space, even though I put the meta tag in head. What is the solution?
4 Answers
+ 4
Use @media attributes in CSS or you can use responsive CSS framework like Bootstrap or Material Design.
+ 2
Putting meta tag is not sufficient. You need to use 'vw' as unit for your dimensions or sizes in place of 'px' or %.
That is,
In place of:
height=200 px,
Write:
height=200 vw
Else you can use Bootstrap to make your page responsive.
+ 2
Thank you Chetali
+ 1
Thank you AJ