gpt4 book ai didi

javascript - 响应式文本框 jQuery Mobile

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

我在 jQuery Mobile 中有标签和文本框,当屏幕尺寸改变时,整个结构也会改变。

当我的屏幕宽度小于 448px 时,它会转到标签下的标签和文本框,但当它大于 447px 时,它会一个接一个地出现。

为了清楚起见,我添加了两张照片。

这是代码:

HTML:

<div role="main" class="ui-content">
<form>
<div class="ui-field-contain">
<label for="sales1">Sales:</label>
<input type="text" id="sales" value="">
</div>
</form>
</div>

CSS:

.ui-field-contain .ui-input-text {
width: 50% !important;
}

One next to the other

One under the other

有没有办法通过 css 来覆盖它并在任何屏幕尺寸下始终一个相邻?

最佳答案

您只需要在小屏幕上将标签样式设置为 block

@media (max-width: 448px) {
.ui-field-contain label {
display: block;
}
}

关于javascript - 响应式文本框 jQuery Mobile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38189130/

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