79247399

Date: 2024-12-03 11:35:14
Score: 1.5
Natty:
Report link

by using the common mobile-first approach you can simplify things:

here's the pen


/* defaults to full width */
.mobile {
  width: 100%;
}

/* changes when certain dimensions is passed - note how we changed this from "max-with" to "min-width" */
@media screen and (min-width: 576px) {
  .mobile {
    width: auto;
  }
}
Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Richard