码迷,mamicode.com
首页 > 其他好文 > 详细

聊天会话框气泡

时间:2018-10-30 10:20:49      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:.com   font   relative   bsp   会话   padding   实现   height   效果图   

1.聊天会话框气泡的实现

我们将一个div的width、height、font-size设置为0,给它一个border-width值,border-color给定四种不同的颜色,此时我们会看到该div由四个三角形组成的,由此我们可以根据需要保留需要的三角形,其他三个三角形定义为透明transparent,最后使用定位。实现代码如下:

HTML:

<div class="contain">
<div class="angle"></div>
</div>

CSS:

<style>
*{
padding:0;
margin: 0;
}
body{
background-color: #aaa;
}
.contain{
margin: 20px auto;
position: relative;
width: 200px;
height: 100px;
border: 1px solid #aaa;
background-color: #fff;
}
.angle {
width:0;
height:0;
font-size:0;
border:solid 10px;
border-color:transparent #fff transparent transparent;
position: absolute;
top: 30px;
left: -20px;
}
</style>
效果图:

     技术分享图片

 

 

聊天会话框气泡

标签:.com   font   relative   bsp   会话   padding   实现   height   效果图   

原文地址:https://www.cnblogs.com/prospective-zkq/p/9874987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!