我一直在爲此工作了大約一個星期。我使用bootstrap將兩個類中的兩個類對齊,並在內容下面創建另一個單獨的類。當我預覽網頁時,單獨的類將與兩個類對齊,而不是單獨的類位於2列網格之下。如何將單獨的類放置在兩列引導程序網格下?下面是結果的圖片,以及使用的代碼。由於Bootstrap是否像簡單的網格對齊兩個內容?
<div class="prod_section">
<div class="border col-md-6">
<img src="help.jpg" class="word" alt="h">
<h2 class="header">SHIRT</h2>
</div>
<div class="border col-md-6 ">
<img src="img/help_two.jpg" alt="" class="word">
<h2 class="header"> URBAN SHIRT</h2>
</div>
</div>
<div class="seperate">Is BOOTSTRAP suppose to appear like this?</div>
.prod_section{
margin:auto;
width:1300px;
margin-top:600px;
margin-bottom: 600px;
}
.word{
max-width:90%;
/*box-shadow: 10px 10px 20px #bababa;*/
}
h2{
font-family: 'Montserrat';
font-weight:700;
}
.header{
padding-top:20px;
}
body{
background:white;
}