在代码中我创建了这个表单元素(我正在使用laravel stapler包):
{{ Form::file('images', array('class' =>"btnUpload")) }}
这是我在浏览器和开发者工具中显示的方式的图像:
我已经给了它一个类,但我给出的样式是给周围环境而不是按钮bestand kiezen
本身。
css代码:
.btnUpload {
padding : 100px;
height : 100px;
width 20%;
}
.btnUpload > button {
width : 200px;
height : 200px;
}
答案 0 :(得分:0)
我通过声明像这样的表单元素来修复它:
{{Form::textarea('alt_description', null, array(
'id' => 'pictureDescriptionInput',
'class' => 'form-control',
'rows' => 10,
'name' => 'alt_description',
'placeholder' => 'Description',
'type' => 'text'
));
}}