zoukankan      html  css  js  c++  java
  • 使用before、after伪类制作三角形

    使用before、after伪类实现三角形的制作,不需要再为三角形增加不必要的DOM元素,影响阅读。

    <!DOCTYPE html>
    <html>
    <head>
        <style>
            div{
                100px;
                height: 100px;
                border: 1px solid #ccc;
            }
            div:before,
            div:after{
                content: "";
                position: absolute;
                top: 40px;
                left: 100px;
                0px;
                height: 0px;
                border: 10px solid transparent;
                border-left-color: rgb(255,255,255);

            }
            div:before{
                top: 39px;
                border: 11px solid transparent;
                border-left-color: #ccc;
            }
        </style>
        
    </head>
    <body>
        <div></div>
    </body>
    </html>

  • 相关阅读:
    with check option(视图 )
    @@ERROR
    事务处理
    含有自增序列的表中使用truncate与delete的不同结果
    Oracle中的通配符
    Java方法重载
    java递归方法
    Oracle中的for语句
    Uboot 2014.07 makefile分析
    linux内核目录结构
  • 原文地址:https://www.cnblogs.com/charling/p/3655683.html
Copyright © 2011-2022 走看看