禁用truncate listview header jquery mobile for long text(single word)

时间:2014-02-10 16:30:56

标签: javascript jquery jquery-ui listview jquery-mobile

我有一个jquery移动列表视图。目前列表视图的标题截断,文本以“...”结尾。我想禁用此行为并显示完整的文本。我遇到了一些解决方案,但没有一个能用于单个单词。即,没有空格的文本,例如电子邮件地址不起作用。

1 个答案:

答案 0 :(得分:4)

  

<强> DEMO

您要查找的CSS是word-wrap:break-word;

ul li h2 {
    white-space: normal !important;
    word-wrap:break-word;
    overflow-wrap: break-word;
}

如需更多浏览器支持,您可以尝试:

ul li h2{
    white-space: pre !important;           /* CSS 2.0 */
    white-space: pre-wrap !important;      /* CSS 2.1 */
    white-space: pre-line !important;      /* CSS 3.0 */
    white-space: -pre-wrap !important;     /* Opera 4-6 */
    white-space: -o-pre-wrap !important;   /* Opera 7 */
    white-space: -moz-pre-wrap !important; /* Mozilla */
    white-space: -hp-pre-wrap !important;  /* HP Printers */
    word-wrap: break-word;      /* IE 5+ */
}