Hi everyone 👋😊 pls how do I make my css responsive? I mean I can't seem to make it fit into various screen size, I am curious! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hi everyone 👋😊 pls how do I make my css responsive? I mean I can't seem to make it fit into various screen size, I am curious!

Css

15th Feb 2020, 8:43 PM
Abdulazeez Muhammed
Abdulazeez Muhammed - avatar
3 Answers
+ 4
You could use bootstrap as well! Either download the files or via cdn.
15th Feb 2020, 9:39 PM
Manos Manik
Manos Manik - avatar
+ 1
you shoud use media queries. Like this: /* Mobile Styles */ @media only screen and (max-width: 400px) /* Tablet Styles */ @media only screen and (min-width: 401px) and (max-width: 960px) /* Desktop Styles */ @media only screen and (min-width: 961px)
15th Feb 2020, 9:03 PM
Gabriel Ilie
Gabriel Ilie - avatar
0
💡🤩thenks bro
21st Feb 2020, 10:55 AM
Abdulazeez Muhammed
Abdulazeez Muhammed - avatar