col-sm-6を使用しているとき、画像とボックステキストを揃えることができません。私はそれが画像やマージン/パディングなどの問題がある場合はわからないブートストラップcol-sm-6画像リサイズdiv
HTML:
/* css: */
.category {
\t padding-top: 3rem;
\t padding-bottom: 3rem;
\t background-color: #096;
}
.categoryimg {
\t display: block;
\t height: 487px;
\t max-width: 100%;
}
.categorytext {
\t padding-top: 12%;
\t font-family: Avenir;
\t color: #0670EB;
\t font-weight: bold;
\t background-color: white;
\t width: 50%;
\t height: 487px;
\t float: right;
}
.categorytext1 {
\t padding-top: 12%;
\t font-family: Avenir;
\t color: #0670EB;
\t font-weight: bold;
\t background-color: white;
\t width: 50%;
\t height: 487px;
\t float: left;
}
<div class="container-fluid">
<div class="container">
<div class="row">
<div class="col-sm-6 categorytext1">
<h2>LANGUAGE</h2>
<p class="lead">Nibook is a platform where foreigners can change their frame time into money by crafting beautiful services and share them with the locals within in-person or online experiences.</p>
</div>
<div class="col-sm-6"> <img src="img/language.png" class="categoryimg" alt="Generic placeholder image"> </div>
</div>
</div>
</div>
</div>
次の絵は、私が達成しようとするものです。私は行ごとに1 imgと1テキストボックスを入れて、それぞれのボックスの間にパディング付きのテーブルとして作成しようとします。この問題を解決する方法がわかりません。
は、私は幅を削除.categorytextと.categorytext1の両方が変更されます。 – ChinaXiaoHong
'container'クラスにはスタイリングがありますか? – Greg