Jquery mobile智能地截断页眉和页脚中的h1 h2标签。我见过很多教程如何避免这种情况。但我的需求是不同的,我有自定义div没有数据角色。我需要在这个div中截断h2 h3标题文本。
如何在自定义文本标题上启用截断长文本?
答案 0 :(得分:3)
您还可以使用以下样式元素创建一个类:
<div>
<h1 style="text-overflow: ellipsis;overflow: hidden;white-space: nowrap;">
This is very long text This is very long text This is very long text This is very long text This is very long text
</h1>
</div>