console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>纯css小米logo</title>
</head>
<body>
<div class="outer">
<div class="inner1">
<div class="xiao">
<div class="xiaoxiao"></div>
</div>
</div>
<div class="inner2"></div>
</div>
</body>
</html>
* {
box-sizing: border-box;
padding: 0%;
margin: 0%;
}
div {
/* border: 2px solid black; */
}
.outer {
margin: 0 auto;
margin-top: 150px;
background-color: #da4c0a;
height: 350px;
width: 350px;
border-radius: 100px;
position: relative;
}
.inner1 {
height: 40%;
width: 45%;
position: absolute;
top: 30%;
left: 20%;
background-color: #ffffff;
border-radius: 5px 35px 5px 5px;
}
.inner2 {
height: 40%;
width: 10%;
position: absolute;
top: 30%;
right: 17%;
background-color: #ffffff;
border-radius: 5px;
}
.xiao {
height: 75%;
width: 60%;
position: absolute;
bottom: 0;
left: 20%;
background-color: #da4c0a;
border-radius: 2px 20px 2px 2px;
}
.xiaoxiao {
height: 75%;
width: 30%;
position: absolute;
bottom: 0;
left: 37%;
border-radius: 2px 2px 2px 2px;
background-color: #ffffff;
}