Answers for "html setting content to screen size makes it slightly bigger"

1

how to make text big on big screens and smaller and smaller screen html

Use 'vw' for reacting to width and 'vh' for height
Posted by: Guest on October-10-2020
0

css for bigger screen size

@media screen and (min-width: 1400px) {
  .container {
    width: 1370px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}
@media screen and (min-width: 1900px) {
  .container {
    width: 1870px;
  }
}
Posted by: Guest on January-06-2022

Browse Popular Code Answers by Language