css空心三角形_css 三角形空心三角形的简单实现

本文介绍了如何使用CSS创建空心三角形,主要通过元素伪类`:before`和`:after`实现。内容包括向下和向上的空心三角形的代码示例,调整边框透明度和颜色来形成空心效果。
摘要由CSDN通过智能技术生成

#talkbubble {

width: 120px;

height: 80px;

position: relative;

-moz-border-radius: 10px;

-webkit-border-radius: 10px;

border-radius: 10px;

border: 1px #808080 solid;

background-color: #fff;

}

#talkbubble:before {

content: " ";

position: absolute;

top: 100%;

left: 50px;

width: 0;

height: 0;

border-left: 15px solid transparent;

border-top: 15px solid #808080;

border-right: 15px solid transparent;

}

.inlayer:after {

content: " ";

position: absolute;

top: 100%;

left: 51px;

width: 0;

height: 0;

border-left: 14px solid transparent;

border-top: 14px solid #fff;

border-right: 14px solid transparent;

}

#talkbubble:hover {

background-color: #ff0000;

}

.inlayer:hover:after {

width: 0;

height: 0;

border-left: 14px solid transparent;

border-top: 14px solid #ff0000;

border-right: 14px solid transparent;

}

空心三角形

空心三角原理:主要利用元素伪类(:before,:after)实现

另外附上 三角形向上的css的代码

.tip-em{

width:12px;

height:12px;

position:absolute;

left:80px;

top:-10px;

}

.em1{

position: absolute;

bottom: 100%;

left: 50px;

width: 0;

height: 0;

border-left: 15px solid transparent;

border-bottom: 15px solid #808080;

border-right: 15px solid transparent;

}

.em2{

position: absolute;

bottom: 100%;

left: 51px;

width: 0;

height: 0;

border-left: 14px solid transparent;

border-bottom: 14px solid #fff;

border-right: 14px solid transparent;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值