0
通常の高解像度の画面では問題なく表示されますが、小さな解像度の画面では画面が壊れます。私はcol-xs-12
のようなクラスを使ってみましたが、まだ正しく表示されませんでした。ブートストラップレスポンスレイアウトが小さな画面で壊れています
<div class="container-fluid about-page-background">
<div class="container" style="height: 289px; margin-top: 60px; padding-left: 60px; padding-right: 60px;">
<div class="row">
<div class="col-md-8 col-xs-12 about-staf">
<span>Lorem ipsum dolor sit amet</span>
<span>consectetur adipisicing elit, sed</span>
<span>do eiusmod tempor incididunt ut</span>
<span>labore et dolore magna aliqua.</span>
</div>
<div class="col-md-4 col-xs-12 about-join">
<span>Ut enim ad?</span>
<a href="#" class="btn btn-warning join-button">minim veniam,
quis</a>
<span class="volunteer-info">nostrud exercitation ullamco laboris<a href="#"> laboris nisi ut aliquip</a></span>
</div>
</div>
<div class="row">
<div class="col-md-12 col-xs-12 about-text">
<span>
ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
</span>
<br />
<br />
<span>proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</span>
</div>
</div>
</div>
</div>
フルコードcan be viewed on plunkr。
を減らすはい、私は固定の高さを削除するが、それは通常の上で正常に見える、大規模およびxsを表示します。互いの上に重ね合わされた小さな視野のテキスト上にある。私は設定col-xs-12を作ったが、私は右のsm = 12でも、そうでないか? – YoroDiallo
col-xs-12は、余分な小型デバイスでdivが最大幅(12グリッド)を持つべきだと言っています。それはうまく動作しています。しかし、とにかくテキストのフォントサイズは非常に大きいです。利用可能なスペースを占有することはできませんでした(12のグリッドが提供されていても)。だからあなたは、フォントサイズとパディングを減らすためにメディアクエリを使用する必要があります –
ああ、私は、thxを参照してください – YoroDiallo