zoukankan      html  css  js  c++  java
  • 消息框尖尖

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="renderer" content="webkit">
        <title>Title</title>
        <style>
            .box{
                 200px;
                height: 100px;
                border: 2px solid blue;
                margin: 100px auto;
                position: relative;
                border-radius: 20px;
            }
            .box:before{
                content: "";
                position: absolute;
                 0;
                height: 0;
                top: 36px;
                left: -11px;
                border-right: 10px solid blue;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }
            .box:after{
                content: "";
                position: absolute;
                 0;
                height: 0;
                top: 36px;
                left: -8px;
                border-right: 10px solid white;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }
        </style>
    </head>
    <body>
        <div class="box"></div>
    </body>
    </html>

    Title

     
  • 相关阅读:
    java获取年份的后两位
    jdbcTemplate的Dao层封装
    beta准备
    福大软工 · 第十一次作业
    Alpha 冲刺 (10/10)
    Alpha 冲刺 (9/10)
    Alpha 冲刺 (8/10)
    Alpha 冲刺 (7/10)
    Alpha 冲刺 (6/10)
    Alpha 冲刺 (5/10)
  • 原文地址:https://www.cnblogs.com/dujunfeng/p/8471631.html
Copyright © 2011-2022 走看看