这样的下三角气泡框用纯css3如何实现,如图
2 回答
GCT1015
TA贡献1827条经验 获得超4个赞
用Border画就行
div:after
{
content:'';
border:20px solid transparent;
border-top-color:#fff;
position:absolute;
left:50%;
margin-left:-20px;
width:0;
}
子衿沉夜
TA贡献1828条经验 获得超3个赞
如果只是视觉上的这种效果,小面一个小的div有2个虚线边框在旋转45度绝对定位到那个大的虚线DIV上即可如:
.d1{
position: relative; border: 1px dashed #999; background: #fff; width: 150px; height: 100px;
}
.d1 span{
display: block; width: 20px; height: 20px; position: absolute; border-right:1px dashed #999; border-bottom:1px dashed #999; transform: rotate(45deg); bottom: -10px; left: 50%; margin-left:-15px; background: #fff;z-index: 99;
}
- 2 回答
- 0 关注
- 881 浏览
添加回答
举报
0/150
提交
取消