OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 body { margin: 0; } | |
4 .clipped { | |
5 background-color: green; | |
6 border: 5px solid red; | |
7 -webkit-clip-path: url(#c); | |
8 clip-path: url(#c); | |
9 } | |
10 </style> | |
11 <div style="columns: 2; column-gap: 0; width: 200px; height: 100px"> | |
12 <div style="height: 100px"></div> | |
13 <div style="height: 90px" class="clipped"></div> | |
14 </div> | |
15 <svg> | |
16 <clipPath id="c" clipPathUnits="userSpaceOnUse"> | |
17 <rect x="5" y="5" width="90" height="90"/> | |
18 </clipPath> | |
19 </svg> | |
OLD | NEW |