Answers for "media queries and or conditions"

CSS
0

media queries and or conditions

@media(min-width:767px) and (max-width: 1000px) {
  ...
}
@media(min-width:767px) or (max-width: 1000px) {
  ...
}
Posted by: Guest on September-15-2021

Browse Popular Code Answers by Language