zoukankan      html  css  js  c++  java
  • 纯CSS绘制三角形(各种角度)

    <html>
      <head>
        <meta charset="UTF-8">
        <title>纯CSS绘制三角形(各种角度)</title>
        <style type="text/css">
        div{
          margin:10px;
        }
          .triangle-topright {
               0;
              height: 0;
              border-top: 100px solid red;
              border-left: 100px solid transparent; 
          }
          .triangle-up {
               0;
              height: 0;
              border-left: 50px solid transparent;
              border-right: 50px solid transparent;
              border-bottom: 100px solid red;
          }
          .triangle-down {
               0;
              height: 0;
              border-left: 50px solid transparent;
              border-right: 50px solid transparent;
              border-top: 100px solid red;
          }
          .triangle-left {
               0;
              height: 0;
              border-top: 50px solid transparent;
              border-right: 100px solid red;
              border-bottom: 50px solid transparent;
          }
          .triangle-right {
               0;
              height: 0;
              border-top: 50px solid transparent;
              border-left: 100px solid red;
              border-bottom: 50px solid transparent;
          }
          .triangle-topleft {
               0;
              height: 0;
              border-top: 100px solid red;
              border-right: 100px solid transparent;
          }
          .triangle-bottomleft {
               0;
              height: 0;
              border-bottom: 100px solid red;
              border-right: 100px solid transparent;
          }
          .triangle-bottomright {
               0;
              height: 0;
              border-bottom: 100px solid red;
              border-left: 100px solid transparent;
          }
    
        </style>
      </head>
      <body>
        <div class="triangle-topright"></div>
        <div class="triangle-topleft"></div>
        <div class="triangle-bottomleft"></div>
        <div class="triangle-bottomright"></div>
        <div class="triangle-up"></div>
        <div class="triangle-down"></div>
        <div class="triangle-left"></div>
        <div class="triangle-right"></div>
      </body>
    </html>
    

      

  • 相关阅读:
    vue(5)
    vue(4)
    vue(3)-防止闪烁
    vue(2)
    bootstrap 模态框
    2017年上半年工作总结和计划
    vue(1)
    文本框数量加减功能
    meta 控制移动端页面的缩放
    题解 P1550 【[USACO08OCT]打井Watering Hole】
  • 原文地址:https://www.cnblogs.com/dearxinli/p/7095723.html
Copyright © 2011-2022 走看看