作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 col-md-6 div,其中已经放置了一个图像,我需要在图像的 Logo 下方专门放置一些文本。每次尝试都将其放在图像下方,请帮忙。我还没有 CSS
<div class=".container-fluid">
<div class="set7">
<div class="row">
<div class="col-md-6 text-center">
<img src="images/dpfront1.png">
<h6>Copyright © 2016 DepotSquare.All Rights Reserved. </h6>
</div>
</div>
<div class="col-md-6">.col-md-6</div>
</div>
</div>
</div>
最佳答案
这是你想要的吗?
.image {
position: relative;
width: 100%;
/* for IE 6 */
}
#img_head {
position: absolute;
//top: 10px;
left: 0;
width: 100%;
}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<div class=".container-fluid">
<div class="set7">
<div class="row text-center">
<div class="col-md-6 text-center image">
<img src="http://3.bp.blogspot.com/-JhISDA9aj1Q/UTECr1GzirI/AAAAAAAAC2o/5qmvWZiCMRQ/s1600/Twitter.png">
<div class="col-md-6" id="img_head">.col-md-6
<br />
<h6>Copyright © 2016 DepotSquare.All Rights Reserved. </h6>
</div>
</div>
</div>
</div>
</div>
</div>
将 .col-md-6
替换为您想要的任何文本。
关于html - bootstrap,如何将文本放在 div 中的图像上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37032407/
我是一名优秀的程序员,十分优秀!