Answers for "how to make responsive css"

CSS
0

css width responsive

@media only screen and (max-width: 980px) {
  body {
    background-color: grey;
  }
}
Posted by: Guest on November-30-2021
1

how to make page responsive using css

/*There is no definitive answer for making your page responsive. 
Though I personally use this method a lot:*/
@media only screen and (max-width: 700px) {
  body {
    background-color: red;

    }
}
Posted by: Guest on October-07-2021
4

responsive website in css

<!--there is not a proper way to do in CSS, so use HTML, here is the HTML tag-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Posted by: Guest on November-27-2021
0

CSS RESPONSIVE

div {
  font-size: min(3vw, 36px);
}
Posted by: Guest on December-19-2021

Code answers related to "how to make responsive css"

Browse Popular Code Answers by Language