OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 .clipped { |
| 4 width: 100px; |
| 5 height: 200px; |
| 6 background-color: green; |
| 7 -webkit-clip-path: polygon(0% 0%,100% 0%,100% 50%,0% 50%); |
| 8 clip-path: polygon(0% 0%,100% 0%,100% 50%,0% 50%); |
| 9 } |
| 10 .abs { |
| 11 position: absolute; |
| 12 width: 200px; |
| 13 height: 200px; |
| 14 } |
| 15 </style> |
| 16 <div class="abs"> |
| 17 <div class="clipped" style="position: absolute; overflow: hidden"> |
| 18 <div class="abs" style="transform: translate(0px, 100px); background-color:
red;"></div> |
| 19 </div> |
| 20 </div> |
OLD | NEW |