我試圖在我的網站上製作這個組件。我想在右側留下一些圖片。它應該適應文字大小,並且必須始終處於最底層。我認爲這是可能的位置:絕對和底部:0。但它不起作用。它一直在我的排上,我不知道爲什麼。爲什麼我的位置絕對不起作用?
.b-image {
position: absolute;
bottom: 0;
}
.over-image {
position: relative;
}
.content-width {
max-width: 1440px;
min-width: 300px;
margin: 0 auto;
padding: 0 24px;
position: relative;
}
section {
padding: 48px 0;
border-bottom: 1px solid #0000ff;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<section>
<div class="row">
<div class="content-width">
<div class="content col-md-6">
<h1>
Headline
</h1>
<p>
foo foo foo foo foo foo foo foo foo foo foo foo foo foo
</p>
</div>
<div class="col-md-6 over-image">
<img class="b-image" src="http://placehold.it/100x100" alt="">
</div>
</div>
</div>
</section>
我沒有看到你使用'位置:absolute' - 應該說是到位的'位置:汽車'''.b-image'? –
@RobinJames Ops,是的,你是對的。但仍然沒有奏效。 – Paili
如果你有一個元素放置在絕對內部,元素放置在相對位置,那麼絕對引用就是包含它的元素。 – Phylogenesis