html5怎么实现当购物车里面有条消息时在右上角有个数字
发布网友
发布时间:2022-04-26 16:53
我来回答
共1个回答
热心网友
时间:2022-05-12 13:52
<style type="text/css">
sup{
background: red;
color: white;
border-radius: 5px; /*圆角*/
padding: 0px 3px; /*左右边距*/
top: -1em; /*数字离图片右上角的高度*/
}
#shop{
margin-top:10px;
}
</style>
<div id="shop">
<img src="images/1.jpg"/ width="25" height="25">
<sup>1</sup>
</div>