gpt4 book ai didi

css - Bootstrap 3 布局 : form collapsing too soon

转载 作者:行者123 更新时间:2023-11-28 08:47:28 26 4
gpt4 key购买 nike

我想使用 bootstrap 获得我的表单的以下布局:

Working on [Select field] [Select Button]

所以:所有元素都在一行中(有足够的空间可用)。

但是当我减小浏览器的宽度时,页面一达到 767 像素宽就会切换到一个奇怪的布局:

Working on

[Select field expanding over the whole row]

[Select Button]

虽然显然仍有足够的空间将表单保持在一行中。是否有一种(可能是简单的)方法来防止该表格分成多行?

我在下面复制了用于测试上述行为的 HTML 页面:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" type="text/css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-6 pull-left">
<a href="#">
Test Page
</a>
</div>
<div class="col-sm-6 pull-right">
You are logged in as abc@xyz.com
</div>
</div>

<div class="row">
<form class="navbar-form navbar-left" role="search" action="#" method="post">
<div class="form-group">

<label for="id_field1" class="control-label">Working on</label>
<select class="form-control" id="id_field1" name="field1">
<option value="1" selected="selected">Choice 1</option>
<option value="2">Choice 2</option>
<option value="3">Choice 3</option>
</select>
</div>
<button type="submit" class="btn btn-default">Select</button>
</form>
</div>

<div class="row">
<div class="col-sm-12">
Stuff will come here...
</div>
</div>

<div class="row">
<div class="col-sm-12">
<p>This is a footer</p>
</div>
</div>
</div>

</body></html>

非常感谢任何帮助和建议!

最佳答案

用具有列大小类(如“col-xs-2”)的 div 包围行中的每个元素,如下所示:

<div class="form-group">
<div class="col-xs-2">
<label for="id_field1" class="control-label">Working on</label>
</div>
<div class="col-xs-6">
<select class="form-control" id="id_field1" name="field1">
<option value="1" selected="selected">Choice 1</option>
<option value="2">Choice 2</option>
<option value="3">Choice 3</option>
</select>
</div>

<div class="col-xs-4">
<button type="submit" class="btn btn-default">Select</button>
</div>

</div>

只要您使用“col-xs-...”,即使在小型设备上,该行的每一列都将保持在同一行。 Here's a fiddle .

编辑:

将表单类更改为“form-horizo​​ntal”会将表单组更改为网格行(请参阅 this ),这允许列大小在所有显示尺寸中保持一致。 Here's a new fiddle反射(reflect)了这种变化。

关于css - Bootstrap 3 布局 : form collapsing too soon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20922771/

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