【发布时间】:2015-03-08 16:54:00
【问题描述】:
我想在使用引导程序的 wordpress 网站中将我的标题与容器底部对齐,该怎么做?
我尝试使用正向和相对定位,但我让 txt 与所有左侧或最顶部对齐..
这是我的代码:
<div class="container-fluid pre-content-banner">
<div class="container">
<div class="intro-title bottom-aligned-text">
<h1><?php the_title(); ?></h1>
</div>
</div>
</div> <!-- end container fluid -->
CSS:
.pre-content-banner {
height: 300px;
background: white url("images/businessppl-bg.jpg") no-repeat center;
background-size: cover;
position: relative;
}
.intro-title {
position: relative;
bottom: 0;
left: 0;
}
我得到了这个结果:
【问题讨论】:
-
应该是
position:absolute和父position:relative
标签: html css wordpress twitter-bootstrap-3