UNPKG

css-sprite-loader

Version:

A webpack loader to convert png into sprite image

28 lines (25 loc) 612 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> .a { background: red; } @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) { .a { background: #aa0000; } } .b { background: blue; } </style> </head> <body> <div class="a b" style="width: 200px; height: 200px;"></div> </body> </html>