-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomBorder.html
51 lines (40 loc) · 1003 Bytes
/
CustomBorder.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
padding: 0;
margin: 0;
}
.wrapper{
margin: 0;
padding: 0;
height: 100%;
background: rgb(219, 219, 219);
width: 100%;
border: 2px solid red;
}
.menu-item{
width: 100px;
height: 100px;
margin: 10px auto;
float: left;
border-radius: 58% 42% 60% 46% / 38% 25% 75% 62% ;
background: linear-gradient(#dd5e89, #f7bb97);
animation: ;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="menu-item">
</div>
<div class="menu-item">
</div>
<div class="menu-item">
</div>
</div>
</body>
</html>