1
私はレスポンシブサイトとして構築するのに苦労しているという設計を受けました。cssを使用して背景画像の左端を中央に配置する方法
Iは、ブラウザウィンドウのエッジまで拡張する画像が欲しいので、私は、スペーサー画像と、流体容器内の背景画像として配置しました。問題は、いったんモバイルになると、上記のコピーの下に背景イメージが表示されることです。
私はこのレイアウトのいくつかの他のバージョンを試しましたが、何も動作しません。誰かに助言があることを願っています。
ここには大まかなマークアップがあります。応答性の効果を達成するために
.test {
background-image: url(http://placehold.it/1600x500);
background-repeat: no-repeat;
background-position: 50% bottom;
background-size: cover;
padding: 0;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container-fluid test">
<div class="container">
<div class="row">
<div class="col-md-6" style="background-color: blue;">left col</div>
<div class="col-md-6"><img src="http://placehold.it/20x500/b0b0b0" alt="spacer"></div>
</div>
</div>
</div>
どこでモバイルデバイスを使いたいですか? –
私は上記の画像のようにコンテンツの下に画像を積み重ねたいと思います。 – Fireflight