blob: afc8c855617b9777f05c6d42ba2682e077dfb663 (
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 150 150 L 250 0 L 250 250 L 0 160 z');
}
</style>
<body>
<div class="container"></div>
</body>
</html>
|