在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
基本语法 text-overflow: clip;ellipsis;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 文字排版内容请搜索极客世界以前的文章或继续浏览下面的相关文章,希望大家以后多多支持极客世界! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论