如何获得使用基础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