Answers for "@medai css"

CSS
51

media query

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}
Posted by: Guest on December-06-2019
3

print media css

@media print {
  /* styling goes here */
  .example {
    display: none;
  }
}
Posted by: Guest on May-20-2020

Browse Popular Code Answers by Language