DIV+CSS学习 -- 太极图☯️

2017-03-14  本文已影响84人  GA_
<!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>
上一篇 下一篇

猜你喜欢

热点阅读