您的位置:首页 > Web前端 > CSS

利用css的before和after属性,实现类似QQ对话框效果

2016-02-17 17:27 816 查看
实现效果如下:



前面的小三角形的原理是利用两个三角形,一个是黑色,一个白色,利用index属性,让白色的三角形覆盖黑色的三角形,白色三角形比黑色三角形靠右1px。下面是代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
p:before{content: "H"}
p:after{content: "d"}

.test-div{
position: relative;
width: 150px;
height: 36px;
border-radius: 5px;
border: 1px solid black;
background: rgba(245, 245, 245, 1);
}

.test-div:before, .test-div:after {
content: "";
display:block;
position: absolute;
top: 8px;
width: 0;
height: 0;
border: 6px solid transparent;

}

.test-div:before {
left: -11px;
border-right-color: rgba(245, 245, 245, 1);
z-index: 1;
}

.test-div:after {
left: -12px;
border-right-color: rgba(0, 0, 0, 1);
z-index: 0;
}
</style>
</head>
<body>
<div class="test-div"><p>ello worl</p></div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  html css 对话框 triangle