blob: 5b64b3c293c0d22cd4d02f9fb25b674160376988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE html>
<html>
<body style="background:white">
<style>
div {
position: absolute;
width: 100px;
height: 100px;
border-radius: 30px;
overflow: hidden;
}
span {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
transform: scale(2);
}
</style>
<div><span></span></div>
</body>
</html>
|