gpt4 book ai didi

html - laravel 订书机中的样式表单元素

转载 作者:行者123 更新时间:2023-11-28 08:04:47 26 4
gpt4 key购买 nike

在代码中我制作了这个表单元素(我使用的是 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;
}

最佳答案

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

                {{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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com