<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS 实现图片右上角数字显示</title>
<style>
.box {
height: 60px;
width: 60px;
position: relative;
margin: 100px auto;
}
.box img {
width: 100%;
height: 100%;
}
.box .number {
position: absolute;
left: 80%;
top: -12px;
background-color: red;
color: #fff;
line-height: 23px;
width: 23px;
border-radius: 24px;
text-align: center;
font-size: 17px;
}
</style>
</head>
<body>
<div class="box">
<img src="https://upload.jianshu.io/users/upload_avatars/16069544/8e5ccee8-9c9e-4345-bbaa-8f32ec595557.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240" alt="">
<span class = "number">2</span>
</div>
</body>
</html>
07-21
1679