blob: 99126195a13b6e09a9e6080277a454d19c8576bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<style>
.container {
width: 80px;
height: 80px;
zoom: 1.25;
background-color: green;
clip-path: circle(35% at 35% 35%);
}
</style>
<body>
<div class="container"></div>
</body>
</html>
|