0
How can I make my website responsive
Here's the code: https://replit.com/@Girish-kumarku5/Quadratic-equation-solver?s=app
2 Answers
+ 3
Use relative sizes where possible. You can also make use of the viewport and media queries.
You might be interested in the Responsive Web Design course on sololearn.
+ 2
You can use css (media queries).
However itâs often easier and more feature rich to use a framework (Zurb Foundation, Bootstrap are two popular frameworks).
Hereâs a quick example of a media query:
@media only screen and (max-width: 600px) {
body {
border-left:20px ;
}
}