我正在尝试使用 TwitterBoostrap 在 cakePHP 中并排放置两个输入。
这是我的一段代码
<?php echo $this->Form->create('Ad',array("class"=>"well row-fluid")); ?>
<fieldset>
<legend><?php echo __('Add Ad'); ?></legend>
<?php echo $this->Form->input('user_id',array('class'=>'span3'));?>
<div class="controls controls-row">
<?php echo $this->Form->input('state_id', array('empty' => 'Selecione o Estado','class'=>'span2','div'=));?>
<?php echo $this->Form->input('city_id', array('empty' => 'Selecione a Cidade','class'=>'span5'));?>
</div>
输出如下所示:
State
|----------| City
|----------|
城市未对齐。我该如何解决?
我该如何解决?