css绘制带箭头对话框


<html>
<head>
    <meta charset="UTF-8">
    <title>Testtitle>
    <style>
        .tip {
            position: relative;
            background-color: deepskyblue;
            margin: 20px auto;
            width: 246px;
            height: 43px;
            line-height: 43px;
            color: white;
            text-align: center;
            border-radius: 10px;
            font-family: sans-serif;
        }
        .tip:after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border: 8px solid;
        }
        .top:after {
            border-bottom-color: deepskyblue;
            left: 50%;
            bottom: 100%;
            margin-left: -15px;
        }
        .right:after {
            border-left-color: deepskyblue;
            left: 100%;
            top: 50%;
            margin-top: -7px;
        }
        .bottom:after {
            border-top-color: deepskyblue;
            top: 100%;
            left: 50%;
            margin-left: -15px;
        }
        .left:after {
            border-right-color: deepskyblue;
            top: 50%;
            right: 100%;
            margin-top: -9px;
        }
    style>
head>
<body>
    <div class="tip top">topdiv>
    <div class="tip bottom">bottomdiv>
    <div class="tip left">leftdiv>
    <div class="tip right">rightdiv>
body>
html>

效果图:
css绘制带箭头对话框_第1张图片

你可能感兴趣的:(css3)