Blogger Information
Blog 47
fans 1
comment 0
visits 53020
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS设置一行内文字超过宽度不换行且不显示,截断文字加...
晴天
Original
1324 people have browsed it

原始效果

  1. div{
  2. display: flex;
  3. flex-flow: column nowrap;
  4. /*父元素设置为弹性盒子,垂直且不允许换行*/
  5. }
  6. div > a {
  7. white-space: nowrap; /*设置文字禁止换行*/
  8. overflow: hidden; /* 内容超出宽度时隐藏超出部分的内容 */
  9. text-overflow: ellipsis;/* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用。*/
  10. }

使用后效果

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post