brechen Ich habe Bootstrap auf einem Formular verwenden. Ich breche die Struktur gemäß den Rasteroptionen, die von Bootstrap bereitgestellt werden. Ich habe verwendet wie col-md-2 | col-md-6 | col-md-4
(siehe Bild unten)Wie man ein Grid div auf untergeordnete Ebene in Bootstrap
In col-md-6
gibt es eine Textarea mit 3 Zeilen. Was ich erwarte ist, letzte div zu brechen, die col-md-4
haben, und ich kann es zu 2 Spalten und 3 Reihen brechen. wie im Bild angezeigt.
Aktuelle HTML
<div class="row">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<p class="pHeader">
Comments :
</p>
</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<textarea id="txtComments" rows="3" cols="12" class="form-control" runat="server" />
</div>
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div>
</div>
</div>
</div>
Dank für die Hilfe danken .. – Gaurravs