如何獲得使用基礎CSS框架與文本輸入對齊的按鈕?我嘗試使用「內聯」類,它將文本輸入與標籤垂直對齊,但不能與按鈕一起使用。默認情況下,按鈕的頂部邊緣與文本輸入的頂部邊緣內嵌。將按鈕與基礎css中的文本輸入對齊
<form>
<div class="row">
<div class="three columns">
<input type="text" />
</div>
<div class="two columns end">
<button type="button" class="button inline">Do Something</button>
</div>
</div>
</form>
use .two,.three {float:left} OR .columns {float:left} – Chandrakant 2013-02-22 06:32:14