引導使得它很容易做到形式W /最小的造型,與font sizes
,colors
等異常,但他們增加額外elements
,像這樣form-group
你不必添加額外的CSS。我喜歡隨時使用article
,header
,section
,footer
等。
據我所知,div
基本上是「無論」元素。 Bootstrap在他們的例子中使用了divs
,但是在他們的例子中只是b/c是div
,並不意味着你不能使用別的東西。
它也取決於你的佈局很多。也許你在一個頁面上登錄,但你有背景圖像,居中登錄表單等,所以這將決定你使用的元素類型。
<div id="login">
<div class="form-group">
<input type="text" class="form-control" name="username" />
</div>
<div> class="form-group">
<input type="password" class="form-control" name="password" />
</div>
<div class="form-group form-inline">
<input type="checkbox" />
<label>Remember Me</label>
</div>
<div class="form-group">
<input type="submit" value="Login" />
</div>
</div>
這很容易變成
<article id="login">
<section class="form-group">
<input type="text" class="form-control" name="username" />
</section>
<section class="form-group">
<input type="password" class="form-control" name="password" />
</section>
<section class="form-group form-inline">
<input type="checkbox" class="form-control" />
<label>Remember Me</label>
</section>
<footer class="form-group">
<input type="submit" value="Login" />
</footer>
</article>
我傾向於喜歡後者,但它是你的決定真的。
我的建議「DIV」 – 2015-03-19 10:35:51