ビデオのコンテンツであるdivがありますが、問題はありません私はそれがブートストラップの通常の振る舞いだと思っていますが、デバイスが小さくなるとdivを増やす必要があります。どうすればいいのですか?ここブートストラップコンテンツの高さを増やす
を使用すると、メディアクエリを使用してそれを行うことができます
<section class="content_section white_section bg2">
<div class="embed-responsive embed-responsive-16by9">
<div id="video_overlays"></div>
<div class="container vertical-center ">
<div id="over">
<div class="title-wrapper main_title centered upper">
<h2><span class="line"></span>Simple solutions for complex problems</h2>
</div>
<div class="description4 centered">
<p dir="ltr"><b id="docs-internal-guid-7b963bcb-e991-08ff-b846-612f8d57baee">The world is a complex place. </b><br><b>Our solutions are designed to allow organisations to quickly and simply use their information without adding layers and layers of heavy software.<br>
Usability and simple deployment are the key words.</b></p>
</div>
</div>
</div>
<div id="player" width="100%" height="100%" style="z-index:-1">
</div>
</div>
</section>
はそれを達成するために、ブートストラップ方法はありins't?高さが増えるはずですが固定された方法ではないからです。 –
私は自分の答えを編集しました。私に説明させてください。ブートストラップはスクリーンの解像度に応じて幅を調整するもので、高さではないので、ブートストラップを使ってそれを行う方法はないと思います。したがって、デバイスの幅に応じて高さを変更する場合は、独自のメディアクエリを作成する必要があります。それ以外の場合は、bootstrap.jsファイル内の高さを追加する必要があります。これはいい考えではありません。 – lhavCoder