gpt4 book ai didi

MaterializeCSS - 对齐按钮和输入字段

转载 作者:行者123 更新时间:2023-12-03 13:32:19 26 4
gpt4 key购买 nike

materializeCSS我试图将一个按钮和一个输入字段放在另一个附近(类似于 default file input ),如下图所示。

what I need

但是我很难实现它,因为输入字段标签在按钮上方或字段在按钮下方。

 <div class="row">
<div class="col s12 m4 l3">
<div class="file-field input-field">
<button class="waves-effect waves-light btn-large" type="submit" name="action">Button
</button>
<div class="file-path-wrapper">
<input id="email_input" type="text">
<label for="email_input">email</label>
</div>
</div>
</div>
</div>

http://codepen.io/anon/pen/rxKbZz

有没有办法实现它?

谢谢你

最佳答案

在 2017 年 Align input text and button on its right 代码:

<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<input id="name" type="text" class="validate">
<label for="name">Name</label>
</div>
<div class="input-field col s6">
<button class="btn waves-effect waves-light" type="submit" name="action">Go!
</button>
</div>
</div>
</form>
</div>

JSFiddle here

希望它有效!

关于MaterializeCSS - 对齐按钮和输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34531323/

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