blob: b548c5d590edeef0d7aa8a8b4461fed72d2460c7 (
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: circle(35% at 35% 35%);
}
</style>
<body>
<div class="container"></div>
</body>
</html>
|