私は応答性であるこれらの4枚の画像を持っています。しかし、ウィンドウのサイズのために画像が正しく見えない場合があります。どのように私は、画像の比率を維持画像が応答作るとかブートストラップで画像のサイズを一定に保つには?
:例は、このですか?
#books_div {
position: absolute;
left: 50%;
top: 25%;
transform: translatex(-50%);
}
#books_text {
position: absolute;
left: 50%;
top: 15%;
transform: translatex(-50%);
}
#books_div img {
margin-bottom: 20px !important;
}
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet"/>
<!-- Books -->
<h2 id='books_text'> We Giveaway Free Books </h2>
<div class="row" id='books_div'>
<div class="col-lg-3 col-sm-6 portfolio-item">
<a href="#">
<img class='img-responsive' src="https://images.gr-assets.com/books/1474154022l/3.jpg" alt="" style="width:200px;height:276px;">
</a>
</div>
<div class="col-lg-3 col-sm-6 portfolio-item">
<a href="#">
<img class='img-responsive' src="https://images.gr-assets.com/books/1328767473l/10713286.jpg" alt="" style="width:200px;height:276px;">
</a>
</div>
<div class="col-lg-3 col-sm-6 portfolio-item">
<a href="#">
<img class='img-responsive' src="https://images.gr-assets.com/books/1394566113l/20454074.jpg" alt="" style="width:200px;height:276px;">
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item">
<a href="#">
<img class='img-responsive' src="https://images.gr-assets.com/books/1460309528l/44652.jpg" alt="" style="width:200px;height:276px;">
</a>
</div>
</div>
<!-- End of Books -->
画像は幅と高さを固定しています。私はそれがどのように反応するのか分かりません。固定寸法を保持したい場合は、元の比率に一致する値をそのまま挿入します。 – JJJ
@JJJブートストラップは応答性に優れています。コードスニペットを再生してみてください:) – user6902601