-
Notifications
You must be signed in to change notification settings - Fork 791
Expand file tree
/
Copy pathbox-edge-complex.html
More file actions
35 lines (35 loc) · 895 Bytes
/
box-edge-complex.html
File metadata and controls
35 lines (35 loc) · 895 Bytes
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
<html>
<head>
<title>Complex box edge example</title>
<style>
div {
position: absolute;
left: 100px;
top: 100px;
}
.box-demo {
width: 100px;
height: 100px;
background-clip: content-box;
background-color: lightblue;
border: solid black 10px;
border-radius: 20px 20px 20px 40px;
border-width: 30px 10px 20px 10px;
padding: 10px 20px 10px 10px;
margin: 20px 10px 10px 10px;
}
.margin-box {
width: 150px;
height: 170px;
background-color: #B29BA3;
border: solid #FFF7A5 10px;
border-width: 20px 10px 10px 10px;
border-radius: 30px 30px 30px 50px / 40px 40px 30px 50px;
}
</style>
</head>
<body>
<div class="margin-box"></div>
<div class="box-demo"></div>
</body>
</html>