如何使用 CSS 将文本置中显示在图像上


要在图像的中间位置放置文本,请在 CSS 中使用 transform 属性。你可以尝试运行以下代码,将文本置中显示在图像上方

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .container {
            position: relative;
         }
         .topleft {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 18px;
         }
         img {
            width: 100%;
            height: auto;
            opacity: 0.3;
         }
      </style>
   </head>
   <body>
      <h2>Image Text</h2>
      <p>Add some text to an image in the center of an image:</p>
      <div class = "container">
         <img src = "trolltunga.jpg" alt = "Norway" width = "1000" height = "300">
         <div class = "topleft">Center</div>
      </div>
   </body>
</html>

更新于:2020-06-25

2K+ 查看次数

开启你的 职业生涯

完成课程获取认证

开始
广告