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
3 ответов
+ 4
You could use bootstrap as well!
Either download the files or via cdn.
+ 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)
0
💡🤩thenks bro