2
我正在使用JQuery mobile的可摺疊設置,當在移動設備上查看時,我的長標題標題被截斷(並且無法讀取)。阻止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>
...無濟於事。
完美,你搖滾賈斯珀! – 2012-04-23 01:12:17
僅供參考,這在Chrome中運行良好,但似乎不適用於iPhone中的Safari webkit。調查爲什麼這是這種情況 – 2012-04-23 15:52:18
你嘗試過使用'!important'嗎? – Jasper 2012-04-23 16:16:39