gpt4 book ai didi

symfony - 在哪里可以更改表单文本框的大小?

转载 作者:行者123 更新时间:2023-12-04 16:18:48 24 4
gpt4 key购买 nike

我在Controller做形式像下面这样。

$form = $this->createFormBuilder($row)
->add('comment',null,array('label' => 'input comment'))

然后在 Twig 文件中...
{{form_widget(form.commentToMutor)}}

它显示文本输入框,但它太小了。

如何更改 TextBox 的大小

最佳答案

扩展@manseuk 的答案(没有足够的声誉发表评论),如果您愿意,您还可以在表单构建器中指定 html 样式属性:

$form = $this->createFormBuilder($row)
->add('comment', null, array(
'label' => 'input comment',
'attr' => array('style' => 'width: 200px')
)
);

已编辑 来自 html attribute for widthhtml style attribute .

关于symfony - 在哪里可以更改表单文本框的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16894225/

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