嗨,我已经做了一个气泡,但我想让背景图像也进入箭头。我也确实找到了一些示例,但编辑它们以满足我的需要令人困惑,因为我无法将箭头定位到我希望它最终出现的位置。
.bubble {
position: relative;
width: 227px;
height: 310px;
background-color:white !important;
background: url(../images/thepartypeople/assets/main-bg.png) repeat 0 0;
}
.bubble:after {
content: "";
position: absolute;
top: 128px;
left: -15px;
border-style: solid;
border-width: 15px 15px 15px 0;
border-color: transparent #000;
display: block;
width: 0;
z-index: 1;
}
这是我的语音气泡代码。
任何帮助都会得到帮助
非常感谢。