zoukankan      html  css  js  c++  java
  • 用css做出来一个三角形

    用css做出来一个三角形

     
     
     <!--不设置宽高  转换行内块  边线设置成宽度-->
          <div class="triangle"> 三角形复习<span></span></div>
      
     
     /* 相对定位*/
    .triangle {
                position: relative;
            }
     /* 绝对定位*/
     
           .triangle span  {
                position: absolute;
                top: 5px;
                display: inline-block; /* 行内块*/
                0;   
                height: 0;
                border- 5px;
     
              /*边线颜色设置 transparent 透明   顺序 上 右 下  左 更改顺序可以得到不同角度的正三角行 */
                border-color: transparent   red  transparent transparent ;
              
              /*边线样式设置为实线*/
                border-style: solid solid solid solid;
            }

      

      

    #triangle-topleft {
         0;
        height: 0;
        border-top: 100px solid red;
        border-right: 100px solid transparent;
    }
    

      

     
    #triangle-topright {
         0;
        height: 0;
        border-top: 100px solid red;
        border-left: 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;
    }
    

      

     
  • 相关阅读:
    Hibernate中的HQL
    hibernate配置数据库连接池三种用法
    Hibernate的延迟检索和立即检索
    Hibernate关系映射中的注解
    Hibernate的多种关系映射(oto、otm、mtm)
    自然主键和代理主键的区别
    Hibernate的xml方法配置和操作代码
    Hibernate简介
    VirtualBox从USB设备(PE)启动图文教程
    属性动画
  • 原文地址:https://www.cnblogs.com/ysshuai/p/6683954.html
Copyright © 2011-2022 走看看