目录

如何 - 将文本放置在图片上


了解如何将文本放置在图片上。


图片文字

Snow
左下方
左上方
右上
右下角
居中

亲自试一试 »


如何在图片中放置文本

步骤1)添加HTML:

示例

<div class="container">
  <img src="img_snow_wide.jpg" alt="Snow" style="width:100%;">
  <div class="bottom-left">Bottom Left</div>
  <div class="top-left">Top Left</div>
  <div class="top-right">Top Right</div>
  <div class="bottom-right">Bottom Right</div>
  <div class="centered">Centered</div>
</div>

步骤2)添加CSS:

示例

/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: white;
}

/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

/* Top right text */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
亲自试一试 »

要了解有关如何设置图片样式的更多信息,请阅读我们的CSS 图片教程。

要了解有关 CSS 定位的更多信息,请阅读我们的CSS 位置教程。