第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何刪除此 Bootstrap 4 模式右側(cè)的多余空間?

如何刪除此 Bootstrap 4 模式右側(cè)的多余空間?

Go
青春有我 2023-08-21 15:04:58
這是小提琴: https: //jsfiddle.net/apo5u0mt/這是代碼:超文本標(biāo)記語言<div class="modal" id="galleryModal">  <div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-xl">    <div class="modal-content">      <div class="gallery">        <div class="gallery-item">          <img src="https://preview.ibb.co/kPE1D6/clouds.jpg">        </div>        <div class="gallery-item">          <img src="https://preview.ibb.co/mwsA6R/img7.jpg">        </div>        <div class="gallery-item">          <img src="https://preview.ibb.co/kZGsLm/img8.jpg">        </div>      </div>    </div>  </div></div><button type="button" class="btn btn-primary" data-toggle="modal" data-target="#galleryModal">Modal</button>CSS.gallery {  overflow-y: auto !important;}.gallery-item {  margin: 5px;  float: left;}.gallery-item img {  height: 150px;  width: 200px;  object-fit: cover;}.btn {  margin: 5px;}模態(tài)框的右側(cè)有一些額外的空間。我不想要那個空間。我希望模態(tài)適合內(nèi)容,即圖像。我已經(jīng)盯著這個太久了,非常感謝任何幫助。
查看完整描述

1 回答

?
慕姐4208626

TA貢獻(xiàn)1852條經(jīng)驗 獲得超7個贊

Bootstrap 正在這樣做:


.modal-dialog {

  max-width: 500px;

}

該.modal-dialog元素是塊元素,因此默認(rèn)情況下希望寬度為 100%,但 Bootstrap 的樣式將其寬度保持為 500px。

您明確將每張圖像的寬度設(shè)置為 200 像素,這(暫時忽略邊距)僅加起來為 400 像素。



兩個可能的修復(fù)方法是:

1. 在這里重寫 Bootstrap 的模態(tài)樣式,將模態(tài)限制為更窄的寬度:

/*

  The value below is empirically tested,

  allows for your given margins & floating. I originally expected it to be

  420px = (200px width + 5px left margin + 5px right margin) * 2

  but 422px was necessary to avoid wrapping when tested in jsfiddle

*/


.modal-dialog {

  max-width: 422px;

}

https://jsfiddle.net/nftj9s7y/1/


如果圖像的寬度恰好為 200 像素很重要,那么這就是您的解決方案。然而,這對我來說似乎是一個脆弱的解決方案 - 如果您決定更改圖像寬度,它就會崩潰,并且可能無法在較小的屏幕尺寸下工作。




更靈活的解決方案是:


2.使用flexbox讓圖像擴展以填充模態(tài)框

.gallery {

  display: flex;

  flex-wrap: wrap;

  padding: 5px;

}


/* now that the parent element is display: flex, we don't need floats anymore */

.gallery-item {

  padding: 5px;

  width: 50%;

}


.gallery-item img {

  height: 150px;

  object-fit: cover;

  width: 100%; /* allow image to fill width of containing element */

}

https://jsfiddle.net/vzs98n6b/2/




最后一點,除非您在該元素上指定或,.gallery { overflow-y: auto }否則不會有任何效果。heightmax-height


查看完整回答
反對 回復(fù) 2023-08-21
  • 1 回答
  • 0 關(guān)注
  • 196 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號