Horje
device-pixel-ratio css Code Example
device-pixel-ratio css
/* Exact resolution */
@media (-webkit-device-pixel-ratio: 1) {
  p {
    color: red;
  }
}

/* Minimum resolution */
@media (-webkit-min-device-pixel-ratio: 1.1) {
  p {
    font-size: 1.5em;
  }
}

/* Maximum resolution */
@media (-webkit-max-device-pixel-ratio: 3) {
  p {
    background: yellow;
  }
}




Css

Related
css negative padding Code Example css negative padding Code Example
how to put an element in front Code Example how to put an element in front Code Example
content url svg css Code Example content url svg css Code Example
active state css Code Example active state css Code Example
pagination html css how to working Code Example pagination html css how to working Code Example

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