71 lines
1.4 KiB
HTML
71 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.box {
|
|
background: red;
|
|
height: 400px;
|
|
width: 400px;
|
|
margin: 0 auto;
|
|
margin-top: 300px;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
.top {
|
|
background: yellow;
|
|
height: 283px;
|
|
width: 283px;
|
|
transform: rotate(45deg);
|
|
position: absolute;
|
|
top: -142px;
|
|
left: 59px;
|
|
}
|
|
.bottom {
|
|
background: green;
|
|
height: 283px;
|
|
width: 283px;
|
|
transform: rotate(45deg);
|
|
position: absolute;
|
|
bottom: -142px;
|
|
left: 59px;
|
|
}
|
|
.left {
|
|
background: indigo;
|
|
height: 283px;
|
|
width: 283px;
|
|
transform: rotate(45deg);
|
|
|
|
position: absolute;
|
|
left: -142px;
|
|
top: 59px;
|
|
}
|
|
.right {
|
|
background: orange;
|
|
height: 283px;
|
|
width: 283px;
|
|
transform: rotate(45deg);
|
|
|
|
position: absolute;
|
|
right: -142px;
|
|
top: 59px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div class="top"></div>
|
|
<div class="bottom"></div>
|
|
<div class="left"></div>
|
|
<div class="right"></div>
|
|
</div>
|
|
</body>
|
|
</html> |