zoukankan      html  css  js  c++  java
  • 带三角缺口的边框

    以前看漫画的时候如果有对话内容,一般会有一个边框,然后带着一个三角从说话人的身上引出。类似下图这样:

    应该有很多方法来实现,这里提供的办法就是创造一个边框,然后用两个三角覆盖。效果如下:

    为了方便理解,我给body加了个黑色背景,是这样:

    代码如下:

    <!doctype html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>带三角缺口的边框</title>
    <style>
    .out {
        display:block;
        width:0;
        height:0;
        border-left:6px dashed transparent;
        border-right:6px dashed transparent;
        border-top:0;
        border-bottom:7px solid #ccc;
        position:relative;
        top:-7px;
        left:50%;
    }
    .inner {
        position:absolute;
        border-left:6px dashed transparent;
        border-right:6px dashed transparent;
        border-top:0;
        border-bottom:7px solid #fff;
        left:-6px;
        top:2px;
    }
    div {
        position:relative;
        margin:0 auto;
        width:80px;
        height:100px;
        border:1px solid #ccc;
        border-radius:5px;
    }
        
    </style>
    </head>
    
    <body>
    <div>
    <span class="out">
        <span class="inner"></span>
    </span>
    </div>
    </body>
    </html>
  • 相关阅读:
    Vasya and Endless Credits CodeForces
    Dreamoon and Strings CodeForces
    Online Meeting CodeForces
    数塔取数 基础dp
    1001 数组中和等于K的数对 1090 3个数和为0
    1091 线段的重叠
    51nod 最小周长
    走格子 51nod
    1289 大鱼吃小鱼
    POJ 1979 Red and Black
  • 原文地址:https://www.cnblogs.com/xumingsong/p/4112285.html
Copyright © 2011-2022 走看看