⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 css-firefox.apt

📁 anewssystem新闻发布系统集成使用了spring hibernate freemarker EXTJS等开源框架 可以作为学习参考
💻 APT
字号:
---
 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -