$("#footer_cart_img").append("<style>#footer_cart_img::after{background:initial}</style>");
每日归档: 2020年5月2日
给图片加角标
<html>
<style>
#a1 {
width: 200px;
height: 200px;
background-color: #333;
color: #fff;
position: relative;
margin-top: 50px;
}
#a1:after {
content: attr(data-num);
line-height: 50px;
text-align: center;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: red;
position: absolute;
top: -20px;
right: -20px;
}
</style>
<body>
<div data-num='22' id="a1">33333</div>
</body>
</html>