如图,√是一张图片,如何移到白色区域中?
代码如下,如果这种写法无法实现我的需求,请告知正确的写法。
div {
background: #fe9d03;
color: #ffffff;
position: relative;
&:after {
content: url('/static/img/icon/gou.png');
width: 0;
height: 0;
right: 0;
bottom: 0;
border: 15px solid #ffffff;
border-left: 15px solid transparent;
border-top: 15px solid transparent;
border-bottom-right-radius: 10px;
border-style: solid;
position: absolute;
}
BIG阳
杨__羊羊