Chromium Code Reviews| 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: inset(5px); | |
| 8 clip-path: inset(5px); | |
| 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> | |
| OLD | NEW |