Being new to CSS, I am open to criticism and feedback.
@media (max-width: 735px) {... }
@media (min-width: 735px) {... }
@media (width: 320px) {... }
@media (width: 360px) {... }
@media (width: 375px) {... }
@media (width: 414px) {... }
I have tried using the max-width
property without success. For some reason, the browser always selects a different max-width
expression. This is why I decided to manually collect the widths of mobile phones.
Additionally, I want to display the same content for devices with widths of 360px and 320px. Is there an "or" expression that could help me simplify this?