这个看一下
```html
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>图片上显示文字</title>
</head>
<body>
<div class="box">
<img src="https://system.puluofaxian.com/shop/resources/species/81fae7da-a3fb-4d85-8e1a-568dfacb0eb3.jpg" />
<span class="text">图片上的文字</span>
</div>
</body>
</html>
<style>
.box{
position: relative;
}
.box img{
width: 400px;
height: 200px;
margin-left: 10px;
}
.text{
position: absolute;
top: 20px;
left: 50px;
font-weight: bold;
color: red;
}
</style>
```
用绝对定位