我想使用css使圖像保持寬高比(16:9)並且同時響應。響應式圖像保持寬高比,始終處於中心位置
此圖像將始終位於屏幕的中心。檢查模式以幫助您。
我發現this後,我試過克里斯的解決方案和艾薩克的解決方案。但我無法將圖像帶入中心。我嘗試像這樣使用Bootstrap。
<div class="col-md-4">.col-md-4</div>
<div class="wrapper col-md-4">
<div class="main">
This is your div with the specified aspect ratio.
</div>
</div>
<div class="col-md-4">.col-md-4</div>
或
<body>
<div class="col-md-4" id="wrap1">.col-md-4</div>
<div class="col-md-4" id="aspectRatio">Aspect Ratio?</div>
<div class="col-md-4" id="wrap2">.col-md-4</div>
</body>
但所有的div出現在另一個下方。
有關如何通過使用Bootstrap或不使用Bootstrap將div引入中心的任何想法?