18 lines
370 B
HTML
18 lines
370 B
HTML
<!doctype html>
|
|
<html>
|
|
<style>
|
|
.b {
|
|
clip-path: url(#clip1);
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<svg class="b" width="200" height="100" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<clipPath id="clip1">
|
|
<rect x="0" y="0" width="100" height="20" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
</body>
|
|
</html>
|