美文网首页
css-三角形

css-三角形

作者: 萝卜缨女王 | 来源:发表于2020-10-13 09:19 被阅读0次
    三角形css样式
    .triangle { 
        position:relative;
        width:50px;
        height:50px; 
        margin:100px auto; 
        border:1px solid red; 
    }
    .triangle em, .triangle strong {
        position:absolute; top:50%; left:50%;
     }
    em {  
        margin-left:-9px; 
        margin-top:-5px;
        border:9px dashed transparent; 
        border-top:9px solid #ccc; 
    }
    strong { 
        margin-left:-7px; 
        margin-top:-5px; 
        border:7px dashed transparent; 
        border-top:7px solid #fff; 
    }
    
    三角形html结构
       <div class="triangle">
          <em></em>
          <strong></strong>
       </div>
    

    相关文章

      网友评论

          本文标题:css-三角形

          本文链接:https://www.haomeiwen.com/subject/esbfyktx.html