OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <title>SVG inside inline block</title> | |
3 <style> | |
4 body { margin: 0 } | |
5 span { display: inline-block } | |
6 div { | |
7 width: 100px; | |
8 background: green; | |
9 position: absolute; | |
10 top: 0; | |
11 left: 0 | |
12 } | |
13 .cover1 { | |
14 top: 0; | |
15 left: 0; | |
16 height: 150px | |
17 } | |
18 .cover2 { | |
19 top: 50px; | |
20 left: 100px; | |
21 height: 100px | |
22 } | |
23 svg { | |
24 width: 100%; | |
25 height: 100% | |
26 } | |
27 </style> | |
28 <span> | |
29 <svg width="100"> | |
30 <rect width="100%" height="100%" fill="red"/> | |
31 </svg> | |
32 </span><span> | |
33 <svg width="100" height="100" style="width: 100%; height: 100%;"> | |
34 <rect width="100%" height="100%" fill="red"/> | |
35 </svg> | |
36 </span> | |
37 <div class="cover1"></div> | |
38 <div class="cover2"></div> | |
OLD | NEW |