Home  >  Article  >  Web Front-end  >  About ellipses ._html/css_WEB-ITnose

About ellipses ._html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:51:12874browse

In the past, text using ellipses was written in js. Today I found that CSS3 can also achieve this.

<!DOCTYPE html><html><head> <meta charset="utf-8"><title>text-overflow</title><style type="text/css">.test_demo{    text-overflow:ellipsis;     overflow:hidden;     white-space:nowrap;     width:200px;     background:#ccc;}</style></head> <body><div class="test_demo">  超酷的IT技术学习平台(我是省略号)</div></body></html>

Super cool IT technology learning platform (...

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn