html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/css/奥运五环.css">
</head>
<body>
<div class="olympic-rings">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</body>
</html>
css
body{
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
transform-style:preserve-3d;
}
.olympic-rings {
width: 800px;
height: 400px;
display: flex;
flex-wrap: wrap;
justify-content: center;
transform-style:preserve-3d;
}
.olympic-rings span{
width: 200px;
height: 200px;
border: 15px ,solid, blue;
margin: 5px;
box-sizing: border-box;
border-radius: 60%;
}
.olympic-rings span:nth-child(2){
border-color: black;
transform: rotateY(-3deg);
}
.olympic-rings span:nth-child(3){
border-color: red;
transform: rotateY(-3deg);
}
.olympic-rings span:nth-child(4){
border-color: yellow;
transform: translateY(-105px) rotateX(2deg) rotateY(2deg);
}
.olympic-rings span:nth-child(5){
transform: translateY(-105px) rotateY(3deg);
border-color: green;
}