+ 3
How to make your website fit all screen sizes?
5 ответов
+ 7
Make your website responsive
The first step being the meta tag
Then using @media tag
Then using viewport height and viewport width (vh & vw) instead of px
This helped me in responsiveness with basic css... You may also use Flexbox but I don't know how to use it.. 😅
+ 3
Thanks for all of your answers!!! 😊😊😊
+ 3
by using bootstrap you can create responsible website
+ 2
Bootstrap !
If you use some framework in the backend, take a look for augmented lib.
Maybe some useful information you can find out
https://www.sololearn.com/learn/1051/
+ 2
For responsiveness first use meta tag in the head.
When doing css try set values in % or vh, em, rem.
Try to use as less px values as possible.
Use media queries in css to set a particular behavior after the screen size shrinks or exceed the specified width
Also you can use frameworks like bootstrap 4.
Bootstrap is responsive so you don't have to worry about all those values and behavior.