私は学生で、学校のプロジェクトに取り組んでいます。私は画像が100%のままで1度しか見えないはずのウィジェットをサイズ変更するときはいつでも、3列の反応性グリッドに取り組んでいます。レスポンシブな画像の問題3列のレイアウト
フルスクリーンで全画面を表示するとエラーが発生しましたが、ウィジェットのサイズを変更すると、セクション全体がオーバーレイされ、元のサイズに戻ってしまいますmediaquery)
コードスニペット:事前に
.container {
width:100%;
height:700px;
}
.columns {
float:left;
width:33.33%;
height:100vh;
}
.blue {
background-color: #92d2fc;
background-image: url(https://placeholdit.imgix.net/~text?txtsize=33&txt=460%C3%97800&w=460&h=800);
}
.yellow {
background-color: #fad74e;
background-image: url(https://placeholdit.imgix.net/~text?txtsize=33&txt=460%C3%97800&w=460&h=800);
}
.red {
background-color: #f88888;
background-image: url(https://placeholdit.imgix.net/~text?txtsize=33&txt=460%C3%97800&w=460&h=800);
}
.blue img, .red img, .yellow img {
width:100%;
}
@media screen and (max-width: 700px){
.columns {
width:100%;
}
}
<div class="container">
<section class="columns blue">
<h3>About us</h3>
<p class="margin-top">How the gym became a reality</p>
</section>
<section class="columns yellow">
<h3>Manifesto</h3>
<p class="margin-top">Respect the rules</p>
</section>
<section class="columns red">
<h3>Contact us</h3>
<p class="margin-top">Have a chat with us</p>
</section>
</div>
ありがとう! 歪み
に
class="clearfix"
を追加し、あなたの親愛なる感謝! – Distortion