在代码中,我制作了这个表单元素(我正在使用laravel Stapler包):

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


这是在浏览器和开发人员工具中如何显示的图像:



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

CSS代码:

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

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

最佳答案

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

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

                ));
                }}

关于html - Laravel订书机中的样式表单元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29548677/

10-10 19:15