在laravel订书机的样式形式元素

时间:2015-04-09 20:47:31

标签: html css laravel

在代码中我创建了这个表单元素(我正在使用laravel stapler包):

{{ Form::file('images', array('class' =>"btnUpload")) }}

这是我在浏览器和开发者工具中显示的方式的图像:

enter image description here

我已经给了它一个类,但我给出的样式是给周围环境而不是按钮bestand kiezen本身。

css代码:

.btnUpload {
    padding : 100px;
    height : 100px;
    width 20%;
}

.btnUpload > button {
    width : 200px;
    height : 200px;
}

1 个答案:

答案 0 :(得分:0)

我通过声明像这样的表单元素来修复它:

                {{Form::textarea('alt_description', null, array(
                    'id'      => 'pictureDescriptionInput',
                    'class'   => 'form-control',
                    'rows'    => 10,
                    'name'    => 'alt_description',
                    'placeholder' => 'Description',
                    'type'    => 'text'

                ));
                }}