我是新手Bootstrap和Bootstrap 3 ..我假設我應該總是使用百分比來指定寬度和從不固定值..是正確的。我是否需要在bootstrap 3中使用百分比或固定值?
我需要我的排不去整個屏幕,但只佔用盡可能多的空間,因爲它需要基於內部元素..我asssume我只需要設置行的寬度..或者是否存在其他方式?
<div class="row" style="width:80%">
<fieldset>
<legend>DashBoard Details</legend>
<div class="col-xs-1">
<label style="width:100px;display:block">FirstName</label>
</div>
<div class="col-xs-2">
<input type="text" />
</div>
<div class="col-xs-1">
<label style="width:100px;display:block;">Age</label>
</div>
<div class="col-xs-2">
<input type="text" />
</div>
<div class="col-xs-1">
<input type="submit" />
</div>
</fieldset>
</div>
嘗試與電網系統粘附(例如COL -...),而不是硬編碼的寬度。此外,[在cols -...中嵌套行](http://getbootstrap.com/css/#grid-nesting)是可能的。考慮到這一點。 –
Jeremy - 謝謝你,但沒有寬度,fieldset輪廓會在整個頁面上顯示...我怎麼能告訴它只畫出了需要的內容(無論內部需要什麼空間?) – user2206329
Jeremey - 我明白了。嵌套行... – user2206329