gpt4 book ai didi

css - Bootstrap 3 : How are form-groups meant to be used inside of columns?

转载 作者:技术小花猫 更新时间:2023-10-29 10:32:28 24 4
gpt4 key购买 nike

我使用的是 Bootstrap 3,我有一个相当标准的页面布局:左侧有一个较宽的列 (.col-md-8),包含纯文本,左侧有一个较窄的列右侧 (.col-md-4),包含一个表单。

每个表单字段依次包含在 .form-group 中。

my first attempt , .form-groups 溢出了包含列的左右边缘。 (确保 JSFiddle 预览框架至少与 Bootstrap 的 sm 断点一样宽。)我添加了一个粉红色背景 div 来显示 .form-groups 应该 呆在里面。

my second attempt ,我在 .col-md-4 中添加了一个 .container,然后将每个 .form-group 包裹在一个 中.row .col-md-4

这确实有效,但是...这是正确且首选的方法吗?似乎有很多额外的样板标记来实现本应自然发生的事情。

Bootstrap 文档非常好,但它们掩盖了一些像这样的“大图”。也许这些东西对于已经使用过响应式 CSS 的人来说是显而易见的,但对于像我这样的初学者来说可能会很困惑。

这是我第一次尝试的代码:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title> - jsFiddle demo</title>
<script type='text/javascript' src='//code.jquery.com/jquery-2.1.0.js'></script>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/css/result-light.css">
</script>
<head>
<body>
<div class="container">

<h1>Broken version</h1>
<h2>Don't forget to expand the width of this preview window. Otherwise you'll just see Boostrap's xs (vertically stacked) layout.</h2>

<div class="row">

<div class="col-md-8">

<div style="background-color: orange;">
<p>This column will be filled with text. Lorem ipsum dolor sit amet...</p>
</div>

</div> <!-- .col-md-8 -->

<div class="col-md-4">

<div style="background-color: pink;">

<form role="form" class="form-horizontal">

<div class="form-group">
<label class="control-label" for="name">Name</label>
<input class="form-control" type="text" name="name" id="name">
</div>

<div class="form-group">
<label class="control-label" for="email">Email</label>
<input class="form-control" type="email" name="email" id="email">
</div>

<button type="submit">Submit</button>

</form>

</div> <!-- pink background div -->

</div> <!-- .col-md-4 -->

</div> <!-- .row -->

</div> <!-- .container -->

</body>

</html>

这是我第二次可能已更正尝试的代码:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title> - jsFiddle demo</title>

<script type='text/javascript' src='//code.jquery.com/jquery-2.1.0.js'></script>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/css/result-light.css">
</head>
<body>
<div class="container">

<h1>Corrected (?) version</h1>
<h2>Don't forget to expand the width of this preview window. Otherwise you'll just see Boostrap's xs (vertically stacked) layout.</h2>

<div class="row">

<div class="col-md-8">

<div style="background-color: orange;">
<p>This column will be filled with text. Lorem ipsum dolor sit amet...</p>
</div>

</div> <!-- .col-md-8 -->

<div class="col-md-4">

<div style="background-color: pink;">

<div class="container">

<form role="form" class="form-horizontal">

<div class="row">
<div class="form-group col-md-4">
<label class="control-label" for="name">Name</label>
<input class="form-control" type="text" name="name" id="name">
</div>
</div>

<div class="row">
<div class="form-group col-md-4">
<label class="control-label" for="email">Email</label>
<input class="form-control" type="email" name="email" id="email">
</div>
</div>

<button type="submit">Submit</button>

</form>

</div> <!-- .container -->

</div> <!-- .pink background div -->

</div> <!-- .col-md-4 -->

</div> <!-- .row -->

</div> <!-- .container -->

</body>

</html>

最佳答案

之前的两个答案都没有阅读 Bootstrap 文档。

您不需要使用 .form-horizo​​ntal 所以不要使用,因为这不是 .form-horizo​​ntal 情况。查看文档中的 .form-horizo​​ntal 示例,这不是您要使用该类的地方。在表单上不使用任何类,那么您不需要 .container 将 .form-group 上的负边距清零。

http://jsfiddle.net/fr6p90ar/6/

与没有 .form-horizo​​ntal 和没有嵌套 .container 的你的一样(阅读文档)。

还有这个:

<div class="form-group col-md-4">

就像将列类放在 .row 上,它会把事情搞得一团糟。

只需使用:

<div class="form-group">

关于css - Bootstrap 3 : How are form-groups meant to be used inside of columns?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26304184/

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