<html>
<head>
<meta charset="utf-8">
<title>文字在图片上</title>
</head>
<body>
<style type="text/css">
.ddone {
position: relative;
}
.txt {
position: absolute;
top: 0
}
</style>
<div class="ddone">
<img src="/images/3.png" />
<p class="txt">测试的文字</p>
</div>
</body>
</html>