css-firefox.apt

来自「anewssystem新闻发布系统集成使用了spring hibernate f」· APT 代码 · 共 35 行

APT
35
字号
---
 firefox中css实现省略号
 ---
 Lingo
 ---
 2007-08-28

CSS的办法

{http://www.jide.fr/emulate-text-overflowellipsis-in-firefox-with-css}

+--
.ellipsis span {
  white-space:nowrap;
  text-overflow:ellipsis; /* for internet explorer */
  overflow:hidden;
  width:190px;
  display:block;
}

html>body .ellipsis {
  clear:both;
}

html>body .ellipsis span:after {
  content: "...";
}

html>body .ellipsis span {
  max-width:180px;
  width:auto !important;
  float:left;
}
+--

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?