代码示例:(标识:css_image_text_top_right)
<!DOCTYPE html>
<html>
<head>
<style>
.container {
  position: relative;
}

.topright {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 18px;
}

img { 
  width: 100%;
  height: auto;
  opacity: 0.3;
}
</style>
</head>
<body>

<h1>图像文本</h1>

<p>在图像右上角添加一些文本:</p>

<div class="container">
  <img src="/static/demo/images/logo-2.png" alt="(www.sou-xun.com)" width="800" height="450">
  <div class="topright">Top Right</div>
</div>

</body>
</html>
运行结果: