DIV+CSS学习 -- 太极图☯️
作者:
GA_ | 来源:发表于
2017-03-14 16:25 被阅读84次<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<style>
#t1 {
width: 100px;
height: 100px;
background: orange;
border: 2px solid black;
border-radius: 50px;
}
#t2 {
width: 100px;
height: 50px;
border: 2px solid black;
border-radius: 50px 50px 0px 0px;
}
#taiJiImage {
width: 100px;
height: 100px;
background: white;
border: 100px solid black;
border-radius: 150px;
}
#taiJiBackImage {
width: 300px;
height: 600px;
border: 1px solid black;
border-left: 300px solid black;
background: white;
border-radius: 300px;
}
#taiJiBackImage::before {
content: '';
display: block;
width: 100px;
height: 100px;
background: white;
border: 100px solid black;
border-radius: 150px;
margin-left: -150px;
}
#taiJiBackImage::after {
content: '';
display: block;
width: 100px;
height: 100px;
background: black;
border: 100px solid white;
border-radius: 150px;
margin-left: -150px;
}
</style>
</head>
<body>
<div id="t1"></div>
<div id="t2"></div>
<div id="taiJiImage"></div>
<div id="taiJiBackImage"></div>
</body>
</html>
本文标题:DIV+CSS学习 -- 太极图☯️
本文链接:https://www.haomeiwen.com/subject/rkjhnttx.html
网友评论