0
我有一系列的Bootstrap行,我想知道是否有任何方法可以用短行'鏈接'列中的內容,以表明它們是相關的?這是它目前的樣子:連接兩個Bootstrap列的短行
這是對現有代碼的樣本。我相信(我希望)我可以通過使用info-div:before { some CSS }
來做到這一點,但我不完全確定是什麼。
<div class="row">
<div class="col-sm-6">
<label>LAN IP</label>
<input type="text" class="form-control" v-model="location.lan_ip" />
</div>
<div class="col-sm-6 info-div">
<p class="field-info">If the first two octets of the device's LAN IP (as reported by Meraki) matches this value, the device will resolve to this location during Meraki import.</p>
</div>
</div>