ここでは、クロスブラウザソリューションを示します。
あなたのCSSにこれを追加します。
/** Custom CSS logic to truncate text with ellipsis **/
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-moz-binding: url('/assets/xml/ellipsis.xml#ellipsis');
}
(この場合は、時/資産/ XML /)サーバーにこのファイル(ellipsis.xml)を追加します:
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:xbl="http://www.mozilla.org/xbl" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<binding id="ellipsis">
<content>
<xul:window>
<xul:description crop="end" xbl:inherits="value=xbl:text">
<children/>
</xul:description>
</xul:window>
</content>
</binding>
</bindings>
その後追加オーバーフローで切り捨てを必要とするDOMノードのクラス:
<div class="ellipsis">....
間違いなく重複します。これは完全なFAQです。 – Phrogz