gpt4 book ai didi

html - CSS显示内联两种形式而不使用 float

转载 作者:太空宇宙 更新时间:2023-11-04 11:23:31 25 4
gpt4 key购买 nike

html/css 中,我只有两种形式,我想使用 float 将其设置为单行作为 inline widthout。你可以看到这个ONLINE DEMO

在下面的代码中,我想将 display:inline 设置为单行作为两个 div。就像这个屏幕截图:

enter image description hereHTML:

<div class='single-page'>
<div id="verification-panel">
<form>
<fieldset>
<legend>verification code</legend>
<label>Mobile Number:</label>
<input type="text" class="inputs" placeholder="EX:">
<span class="help-block"></span>
<button type="button" class="btn">Submit</button>
</fieldset>
</form>
</div>
<div id="activation-panel">
<form>
<fieldset>
<legend>Active Acount</legend>
<label>Verfication code:</label>
<input type="text" class="inputs" placeholder="Verficcation code">
<span class="help-block"></span>
<button type="button" class="btn">Submit</button>
</fieldset>
</form>
</div>
</div>

最佳答案

使用 display:inline-block;

#verification-panel,#activation-panel{
display:inline-block;
}

关于html - CSS显示内联两种形式而不使用 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32579167/

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