blob: 15cd8492d9eeba499a1aeab34a33e35170641e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<style>
.crisp-edges {
image-rendering: crisp-edges;
}
.pixelated {
image-rendering: pixelated;
}
.smooth {
image-rendering: smooth;
}
</style>
</head>
<body>
<img class="crisp-edges" src="dino.png" width="32" height="32">
<img class="pixelated" src="dino.png" width="32" height="32">
<img class="smooth" src="dino.png" width="32" height="32">
</body>
</html>
|