Skip to content

Instantly share code, notes, and snippets.

View LaughingVzr's full-sized avatar
🎯
Focusing

Laughing LaughingVzr

🎯
Focusing
  • KingSoft
  • Beijing,China
  • 12:01 (UTC +08:00)
View GitHub Profile
@LaughingVzr
LaughingVzr / ellipsis.html
Created May 18, 2016 10:01 — forked from DeronW/ellipsis.html
CSS 将显示不完的多余字符用省略号代替兼容各主要浏览器 IE6+、FF、Chrom
单行文本方法, 通过CSS即可解决
<style>
p{
width: 100px;
display: block;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-icab-text-overflow: ellipsis;
-khtml-text-overflow: ellipsis;