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文本框,在浏览器测试它们三个是一个接一个横着排的(也就是都显示在一行。怎样让它们竖着排(也就是一行只显示一个) 展开
<input type="text" />
<input type="text" />
<input type="text" />
</div>
在div标签里插入三个input文本框,在浏览器测试它们三个是一个接一个横着排的(也就是都显示在一行。怎样让它们竖着排(也就是一行只显示一个) 展开
4个回答
展开全部
三个办法:
一、在每个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>
一、在每个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>
展开全部
最简单的就是在每一行后面加一个<br/>换行符
<div id="hello">
<input type="text" /><br/>
<input type="text" /><br/>
<input type="text" /><br/>
</div>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<div id="hello">
<input type="text" /><br>
<input type="text" /><br>
<input type="text" /><br>
</div>
<br>标签是换行用的
<input type="text" /><br>
<input type="text" /><br>
<input type="text" /><br>
</div>
<br>标签是换行用的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询