<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.clipper { | |
position: absolute; | |
top: 120px; | |
left: 170px; | |
width: 100px; | |
height: 200px; | |
background: lime; | |
} | |
.clipper > div { | |
position: absolute; | |
top: 100px; | |
left: 50px; | |
width: 50px; | |
height: 200px; | |
background-color: blue; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="clipper"> | |
<div></div> | |
</div> | |
<svg height="0" width="0"> | |
<clipPath id="clipper" clipPathUnits="objectBoundingBox"> | |
<rect x="0.25" y="-0.25" width="0.5" height="1.5"/> | |
</clipPath> | |
</svg> | |
</body> | |
</html> |