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

     
  • 相关阅读:
    Codeforces 900D Unusual Sequences 容斥原理
    Codeforces 900C Remove Extra One 模拟
    Codeforces 897D. Ithea Plays With Chtholly (交互)
    Codeforces 895C
    Monkey测试环境搭建
    SDK/JDK,Shell/Shell脚本,Apache/APR ,MTK
    计算机基础——Java笔记一
    用Fiddler模拟低速网络环境(弱网)
    弱网定义
    Xcode中的几个常用文件路径
  • 原文地址:https://www.cnblogs.com/dujunfeng/p/8471631.html
Copyright © 2011-2022 走看看