這適用於更大的屏幕並顯示我想要的方式,但在移動設備上,「右標題」與「左標題」重疊。左標題應該上去,但是右標題應該在它下面,而是在左標題的頂部。移動視圖中的文字重疊
我該怎麼辦?
<div class="IdeathonCover">
<img class="img-responsive" width="100%" src="bg-image.jpg">
<div class="IdeathonLeftTitle">
<h1>Left Title</h1>
</div>
<div class="IdeathonRightTitle">
<h1>Right Title</h1>
</div>
</div>
我也試過這種方法,使用引導3佈局,但它沒有奏效。在 「COL-X-12」 不被尊重:
<div class="IdeathonCover">
<img class="img-responsive" width="100%" src="bgimage.jpg">
<div class="row">
<div class="col-md-6 col-xs-12">
<div class="IdeathonLeftTitle">
<h1>Left Title</h1>
</div>
</div>
<div class="col-md-6 col-xs-12">
<div class="IdeathonRightTitle">
<h1>Right Title</h1>
</div>
</div>
</div>
</div>
使用的CSS低於:
.IdeathonCover {
position: relative;
}
.IdeathonLeftTitle {
position:absolute;
bottom: 10%;
left: 0;
padding: 0px 50px 20px;
color: #fff;
font-weight: 300;
}
.IdeathonRightTitle {
position:absolute;
bottom: 10%;
right: 0;
padding: 0px 50px 20px;
color: #fff;
font-weight: 300;
}
任何人都知道爲什麼會這樣?
使用媒體查詢處理你想即移動或任何設備 – WisdmLabs
我什麼屏幕分辨率沒有。我使用了bootstrap的col-xs-12。 – user3362364
,但沒有使用'media-query',因爲您已經使用'position:absolute'使用'media-query'併爲移動設備創建'relative'。 – vivekkupadhyay