79557090

Date: 2025-04-05 14:24:36
Score: 2
Natty:
Report link

You should use css media queries. You can set different breakpoints for different display sizes. Also there is a media query for printing called print. examples:

@media print {
    /* your css */
}
@media (max-width: 450px) {
    /* your css */
}

Link to documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_media_queries/Using_media_queries#targeting_media_types

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mr_Offline