'Generate inverted arc with clip path
Solution 1:[1]
you can use something like this:
.container {
width: 60px;
height: 60px;
clip-path: path("M 60,0 H 0 V 60 C 0,30 30,0 60,0 Z");
background-color: blue;
}
<div class="container"></div>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Ako |

