浅析CSS3 用text-overflow解决文字排版问题
程序员文章站
2022-06-19 12:54:08
基本语法text-overflow的使用需配合hight,over-flow:hidden;white-space:nowrap;三个属性共同使用text-overflow: clip;ellipsi...
基本语法
text-overflow的使用需配合hight,over-flow:hidden;white-space:nowrap;三个属性共同使用
text-overflow: clip;ellipsis;string
clip: 直接隐藏不显示
ellipse: 用… 三个点来表示溢出的文字 (常用)
string:可自定义符号来表示放不下的字符
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .tf{ width: 100px; height:50px; border:1px solid black; overflow: hidden; text-overflow: clip;/*如果只是单纯的隐藏的话,加不加这句话效果都一样 height+overflow就可对溢出的文字直接隐藏*/ } .tf1{ width: 100px; border:1px solid black; overflow: hidden; text-overflow: ellipsis; -webkit-text-overflow: ellipsis; white-space: nowrap; /*若使用ellipsis属性 text-overflow:ellipsis; overflow: hidden;white-space: nowrap; 这三个属性缺一不可 */ } </style> </head> <body> <div class="tf"> 。 </div> <div class="tf1"> 。 </div> </body> </html>
到此这篇关于浅析css3 用text-overflow解决文字排版问题的文章就介绍到这了,更多相关css3 文字排版内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!
上一篇: go redigo的简单操作