我正在使用 JQuery mobile 的可折叠集,当在移动设备上查看时,我的长标题被截断(并且变得不可读)。
例如这里定义的标头:
<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>
……无济于事。