- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在模态框内有一个表单。当窗口的尺寸很小时,一切都很好。如果我最大化窗口,那么表单的元素就会漂浮在模态之外。我已经检查了我所有的 css 样式等,但似乎没有任何冲突。我还在 JSFiddle 上设置了它,它似乎也发生了,而且只有 JQuery 和 Bootstrap。它似乎与我的代码有关,但我不知道是什么。你能看一看并帮助我吗?
<div id="editPassword" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="editPasswordlbl" aria-hidden="true">
<div class="vertical-alignment-helper">
<div class="modal-dialog modal-sm vertical-align-center">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="editPasswordlbl">Change Password</h4>
</div>
<div class="modal-body">
<form action="{{url_for('admin')}}" role="form" id="editPasswordForm" method="post">
<input type="hidden" name="formType" value="changePassword">
<div class="form-group">
<label class="col-sm-3 control-label">Password</label>
<div class="col-sm-5">
<input type="password" class="form-control" name="password" />
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">Repeat Password</label>
<div class="col-sm-5">
<input type="password" class="form-control" name="confirmPassword" />
</div>
</div>
<div class="form-group">
<div class="col-sm-9 col-sm-offset-3">
<!-- Do NOT use name="submit" or id="submit" for the Submit button -->
<button type="submit" class="btn btn-default">Confirm</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
最佳答案
您需要将类 .form-horizontal
添加到 form
元素。这使得 .form-group
充当行。在一些边距旁边,这添加了一个 clearfix 来阻止列“ float ”。
关于javascript - 元素漂浮在 Bootstrap 模式之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27754126/
我有一个空的水平布局,我动态地填充了三个 child 。这是一个纸牌游戏,因此此布局会动态填充具有图像集的 QLabel 子项。当我点击一张卡片来播放它并将其移动到屏幕中央时,我希望其他卡片的位置保持
我正在尝试通过膨胀并使用 FragmentTransaction 将其添加到 Activity 来动态创建一个 float Fragment。 当我将它添加到容器(添加到我在容器中为它创建的 Fram
这个问题在这里已经有了答案: CSS3 Flex: Pull child to the right (1 个回答) 关闭 5 年前。
我的应用程序有 1 个父框和 2 个子框 (divs)。此时,子框出现在彼此下方 This is b This is c .a{border:solid;width:30
是否可以在不单独指定每种类型的情况下对所有上述类型进行扩展? 例如,这是Double的扩展: extension String { init?(_ value: Double?) { if
Due to rounding errors, most floating-point numbers end up being slightly imprecise. https://www.flo
我是一名优秀的程序员,十分优秀!