gpt4 book ai didi

jquery - 防止 JQuery Mobile 可折叠集 header 被截断

转载 作者:行者123 更新时间:2023-12-01 02:33:35 26 4
gpt4 key购买 nike

我正在使用 JQuery mobile 的可折叠集,并且在移动设备上查看时,我的长标题标题被截断(并且变得不可读)。

例如此处定义的 header :

<div data-role="collapsible-set">
<div data-role="collapsible">
<h3>My header with lots of text that gets truncated when viewing on mobile device or small screen.</h3>
<fieldset data-role="controlgroup">
...

最终被截断为: 我的标题有很多文字...

按照其他帖子的建议,我尝试了:

<style type="text/css">
.ui-header .ui-title .ui-btn-text .ui-collapsible-heading {
overflow: visible !important;
white-space: normal !important;
}
</style>

...没有效果。

最佳答案

以下是使可折叠集的标题成为多行所需的 CSS:

.ui-mobile .ui-page .ui-content .ui-collapsible .ui-collapsible-heading .ui-btn-text {
white-space : normal;
}​

请注意,我定位了 .ui-btn-text 元素,该元素是 .ui-collapsible-heading 元素的后代,以获得所需的效果。

这制定了一个非常具体的规则,它将覆盖默认的 jQuery Mobile 样式,而无需使用 !important

这是一个演示:http://jsfiddle.net/JaPdC/

关于jquery - 防止 JQuery Mobile 可折叠集 header 被截断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10253917/

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