Answers for "if screen size css"

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
0

html if screen is smaller thatn

@media screen and (max-width: 1024px) {
    .yourClass {
        display: none !important;
    }
}
Posted by: Guest on August-29-2021

Browse Popular Code Answers by Language