-
我使用以下命令新建了一个表单: input_info = input_group('info',
[
input(label="input 1", type=TEXT, name='input_1', required=True),
input(label='input 2', type=TEXT, name='input_2', required=True),
input(label='input 3', type=TEXT, name='input_3', required=False),
select('username', ['a', 'b', 'c'], name='user_name', required=False),
actions('', [
{'label': 'Go', 'type': 'submit', 'value': None},
{'label': 'Reset', 'type': 'reset', 'color': 'warning'},
], name='action', help_text=''),
],
) 表单中文字是在上下两个输入框的正中,用户可能会误解哪个文字对应哪个输入框,有没有办法增大输入框与文字的间距? 在 pywebio.input.input_group 的文档 中提到 inputs 参数的内容为对单项输入函数的调用,在文档中我没有找到这些单项输入函数有关于行距的参数;我还尝试过在 input 的 label 中加入换行符 |
Beta Was this translation helpful? Give feedback.
Answered by
wang0618
Oct 25, 2022
Replies: 1 comment 1 reply
-
最新版v1.7更新了表单的样式,消除了这种样式上的歧义 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
xuchunqiu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
最新版v1.7更新了表单的样式,消除了这种样式上的歧义