blob: 965d259d26e5f96df22b8a7e72040b8791f065b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<style>
.container {
width: 100px;
height: 100px;
background-color: green;
clip-path: ellipse(15% 25% at 60% 60%);
}
</style>
<body>
<div class="container"></div>
</body>
</html>
|