html中怎样让div中的input竖着排

<divid="hello"><inputtype="text"/><inputtype="text"/><inputtype="text"/></div>在div标签里... <div id="hello">
<input type="text" />
<input type="text" />
<input type="text" />
</div>
在div标签里插入三个input文本框,在浏览器测试它们三个是一个接一个横着排的(也就是都显示在一行。怎样让它们竖着排(也就是一行只显示一个)
展开
 我来答
让猫飞一会儿
推荐于2018-07-28 · TA获得超过1120个赞
知道小有建树答主
回答量:540
采纳率:80%
帮助的人:280万
展开全部
三个办法:
一、在每个input样式中加上 style="display:block;"
<div id="hello">
<input type="text" style="display:block;"/>
<input type="text" style="display:block;"/>
<input type="text" style="display:block;"/>
</div>
二、把div的宽度尽量改小,小于两个input相加的宽度即可
<div id="hello" style="width:1px;">
<input type="text" />
<input type="text" />
<input type="text" />
</div>
三、在每个input后面加上 <br>
<div id="hello">
<input type="text" /><br>
<input type="text" /><br>
<input type="text" />
</div>
白菜一颗
2015-01-26 · TA获得超过8916个赞
知道大有可为答主
回答量:3260
采纳率:69%
帮助的人:3750万
展开全部

最简单的就是在每一行后面加一个<br/>换行符

<div id="hello">
  <input type="text" /><br/>
  <input type="text" /><br/>
  <input type="text" /><br/>
</div>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
HoLee1997
2015-01-26 · TA获得超过1961个赞
知道大有可为答主
回答量:2557
采纳率:84%
帮助的人:977万
展开全部
<div id="hello">
<input type="text" /><br>
<input type="text" /><br>
<input type="text" /><br>
</div>

<br>标签是换行用的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
秀芹水瓶
2015-01-26
知道答主
回答量:32
采纳率:0%
帮助的人:12.3万
展开全部

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式