我想使用bootstrap将提交按钮的宽度增加为输入字段。
这是我的代码。
<div class="form-group col-md-6">
{!! Form::label('Event Photo') !!}
</div>
<div class="form-group col-md-6">
<input type='file' name='photo' id ='photo' class ='form-control'/>
</div>
<div class="form-group col-md-12">
{!! Form::submit('Add', array('class'=>'btn btn-primary')) !!}
</div>
但按钮尺寸不能像这样增加。我哪里错了?我该如何解决?
答案 0 :(得分:2)
表单的array()
部分允许您传入您想要的任何其他参数。
正如您使用它来定义类一样,您可以使用它来定义style
:
<div class="form-group col-md-12">
{!! Form::submit('Add', array('class'=>'btn btn-primary', 'style' => 'width:50px;)) !!}
</div>
只需将50px
更改为您想要使用的宽度。
答案 1 :(得分:0)
添加班级btn-lg
将有效。
您可以在documentation
中找到