CSS使用overflow隐藏超出范围的内容

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS使用overflow隐藏超出范围的内容</title>
</head>
<body>
<div id="example">
<div id="example_main">
<style type="text/css">
.textOverFlow {
width:300px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
border:1px solid #ddd;
}
</style>
<div class="textOverFlow">
各类源码、CSS特效代码及常用软件下载。互相阿訇iucasnjkla 南京看到存款拉S </div>
</div>
</div>
</body>
</html>
发布了7 篇原创文章 · 获赞 1 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/javadeaihaozhe/article/details/47037353