blob: 6cd7e76774bdfada51ae9fc3058db5f65f5fb2f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<style>
.container {
width: 300px;
height: 300px;
background-color: green;
clip-path: path('M 100 100 L 200 0 L 200 200 L 0 120 z');
}
</style>
<body>
<div class="container"></div>
</body>
</html>
|