gpt4 book ai didi

vmware-clarity - 在 Clarity 0.9.14 中水平调整浏览器大小时重叠文本

转载 作者:行者123 更新时间:2023-12-01 19:47:49 26 4
gpt4 key购买 nike

当视口(viewport)尺寸较小时,表单字段会重叠。当空间不够时,有没有办法让表单字段捕捉到下一行?

代码片段:

<form class="compact">
<div class="row">
<div class="col-xs-6">
<section class="form-block">
<div class="form-group">
<label for="aForm_1">This is a form field</label>
<input type="text" id="aForm_1" placeholder="Enter value here" size="45">
</div>
</section>
</div>
<div class="col-xs-6">
<section class="form-block">
<div class="form-group">
<label for="aForm_2">Overlapping Text</label>
<input type="text" id="aForm_2" placeholder="Enter value here" size="45">
</div>
</section>
</div>
</div>
</form>

这是一个骗子: https://embed.plnkr.co/ynfi39fIMk1bc8bSBHAp/

overlapping text

最佳答案

@X.Vu:请看一下这个 Plnkr:https://plnkr.co/edit/6YhGmFusvo5EdySzxNpn?p=preview

以及此处的网格文档中的清晰度表单: https://vmware.github.io/clarity/documentation/forms

您需要按照文档中所述添加带有 .form-group.row 类,然后使用 .col-*表单字段上的类。

<form class="compact">
<section class="form-block">
<div class="form-group row">
<div class="col-md-2 col-sm-6 col-xs-12">
<label for="aForm_1">This is a form field</label>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<input type="text" id="aForm_1" class="form-control" placeholder="Enter value here" size="45">
</div>

<div class="col-md-2 col-sm-6 col-xs-12">
<label for="aForm_2">Overlapping Text</label>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<input type="text" id="aForm_2" class="form-control" placeholder="Enter value here" size="45">
</div>
</div>
</section>
</form>

另请注意,我在 input 上添加了 .form-control 类,因为这使得 input 占据整个 。 col-* 分配给它的空间。

关于vmware-clarity - 在 Clarity 0.9.14 中水平调整浏览器大小时重叠文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46078469/

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