如何在身份证中预先格式化的区域中的图像上放置文字?

时间:2019-03-14 09:33:27

标签: html css

我正在从事身份证项目,并且我有一个数据存入MYSQL数据库,并且PHP页面中的身份证空白图像具有固定大小。

现在我需要将MYSQL db数据放入映像中,最后我需要获取具有所有有效数据的身份证。

我尝试过:

<body>
<div class="image_holder">
    <img src="bg2.jpg" /> 
    <div class="overlay"> </div>
</div>

<div>NHS SUB</div>   
</body>

和csss

.image_holder {
    position:relative;
    float:left;
}

.overlay {
    position:absolute;
    top:0;
    background-color:rgba(34,70,118,0.7);
    width:100%;
    height:100%;
}

please check this image i need place text in this format id card layout

1 个答案:

答案 0 :(得分:0)

像这样?


.wrapper {
  height: auto;
  height: 280px;
  display: inline-block;
}

.image_holder {
  position: relative;
  float: left;
  margin-right: 10px;
  width: 180px;
  background-color: #ccecec;
  display: block;
  min-height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  text-align: center;
  /*background-color: rgba(34, 70, 118, 0.7);*/
  width: 100%;
  height: 100%;
}

p {
  position: absolute;
  bottom: 0;
  margin: 0 auto 0;
  padding: 2px 0;
  display: inline-block;
  background-color: #FE9D86;
  width: 100%;
  text-align: center;
  color: #000;
}

img {
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 90px;
  border-radius: 8px;
}
<div class="wrapper">

  <div class="image_holder">
    <img src="https://www.w3schools.com/howto/img_paris.jpg" alt="Snow" style="width:40%;">
    <div class="overlay">
      <pre>Content over image</pre>
    </div>
    <p>Content</p>
  </div>

  <div class="image_holder">
    <div class="overlay">
      <pre>NHS SUB</pre>
    </div>
    <p>Content</p>
  </div>

</div>