【发布时间】:2014-12-31 11:52:58
【问题描述】:
是否可以在<img> 内叠加图像和文本?看起来类似于下图。我正在使用引导程序
这就是我正在尝试的方式:
html
<div class="form-group">
<img id="uploadPreview" class="photo-style">
</div>
<div class="form-group">
<input type="file" capture="camera" accept="image/*" id="id_photo"
name="photo" onchange="PreviewImage();">
</div>
css
.photo-style{
display: block;
width: 100%;
height: 325px;
background: lightyellow url(../img/internet-world.png);
margin-left: auto;
margin-right: auto !important;
border-radius: 4px;
}
【问题讨论】:
标签: html css image twitter-bootstrap