图像上的中心跨度类元素

时间:2019-03-27 00:16:09

标签: html css

试图使span元素显示在我的图像中心,以创建一个交互式按钮。跨度类为“ plus_own”元素,显示在图像的左上角。

.plus_own {
   font-size: 70px;
   color: white;
   font-family: unc;
   position: relative;
   font-weight: bold;
   top: -30px;
   transition: all 0.4s ease;
}

居中的span类元素试图创建一个交互式按钮。

1 个答案:

答案 0 :(得分:1)

我建议您看看this,以更好地了解其工作原理。

我建议如何执行此操作:

.container {
  position: relative;
  text-align: center;
  color: white;
}

.plus_own {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: red;
  font-weight: bold;
}
<div class="container">
    <img src="https://cdn.shopify.com/s/files/1/1330/4567/files/DSC_0838_1024x1024.jpg?v=1522089465" style="width:100%;">
    <span class="plus_own">Some Text</span>
</div>