gpt4 book ai didi

css - slim : Textfield and button on the same height

转载 作者:行者123 更新时间:2023-11-28 05:01:03 29 4
gpt4 key购买 nike

我是 slim 的新手,正在努力让文本字段和按钮处于相同的高度。谁能帮帮我?

div class="center-div"    
= text_field_tag 'txtSlug', t('code.description'), class:'form-control input-lg'
button class="btn btn-primary" onclick="SubmitForm()" = t('code.submit')

最佳答案

查看bootstrap's inline forms ,您必须对“主要父级”使用 form-inline 以使这些元素内联并将 form-group 添加到 input 元素父级。所以,它应该看起来像。

div class="center-div form-inline"
.form-group
= text_field_tag 'txtSlug', t('code.description'), class:'form-control input-lg'
button class="btn btn-primary btn-lg" onclick="SubmitForm()" = t('code.submit')

Here's a bootply of a similar markup

关于css - slim : Textfield and button on the same height,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40104018/

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