OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 .container { | |
4 -webkit-filter: drop-shadow(5px 5px 5px black); | |
5 } | |
6 .circle-mask { | |
7 border-radius: 80px; | |
8 overflow: hidden; | |
9 width: 100px; | |
10 height: 100px; | |
11 position: absolute; | |
12 } | |
13 .green-box { | |
14 width: 100px; | |
15 height: 100px; | |
16 background-color: green; | |
17 } | |
18 </style> | |
19 <div class="container"> | |
20 <div class="circle-mask"> | |
21 <div class="green-box"></div> | |
22 </div> | |
23 </div> | |
OLD | NEW |