Horje
css media query aspect ratio Code Example
css media query aspect ratio
/* Minimum aspect ratio */
@media (min-aspect-ratio: 8/5) {
  div {
    background: #9af; /* blue */
  }
}

/* Maximum aspect ratio */
@media (max-aspect-ratio: 3/2) {
  div {
    background: #9ff;  /* cyan */
  }
}

/* Exact aspect ratio, put it at the bottom to avoid override*/
@media (aspect-ratio: 1/1) {
  div {
    background: #f9a; /* red */
  }
}




Css

Related
code changes to Hostgator not being reflected Code Example code changes to Hostgator not being reflected Code Example
li only showing first bullet Code Example li only showing first bullet Code Example
hidden elements blinking on hover Code Example hidden elements blinking on hover Code Example
tailwind hover Code Example tailwind hover Code Example
text-shadow css Code Example text-shadow css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10