-
Notifications
You must be signed in to change notification settings - Fork 0
/
rect.html
50 lines (43 loc) · 1022 Bytes
/
rect.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<html>
<head>
<meta charset="utf-8">
<script src="https://unpkg.com/d3/build/d3.js"></script>
<style>
.chart {
width: 80%;
height: 300px;
max-width: 1200px;
padding: 1rem;
}
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 10dpi) {
.pixel-test {
height: 900px;
}
}
</style>
</head>
<body>
<!-- resize width only -->
<div class="chart">
<svg width="100%" height="100">
<rect width="100%" height="100%"></rect>
</svg>
</div>
<!-- end -->
<!-- pixel-density height -->
<div class="chart pixel-test">
<svg width="100%" height="100%">
<rect width="100%" height="100%"></rect>
</svg>
</div>
<!-- end -->
<!-- fluid height + width -->
<div class="chart">
<svg viewBox="0 0 50 50" width="100%">
<rect width="100%" height="100%"></rect>
</svg>
</div>
<!-- end -->
</body>
</html>