單行文本溢出隱藏

 1     <style>
 2         div {
 3             /* 強制文本一行顯示 */
 4             white-space: nowrap;
 5             /* 溢出文本隱藏 */
 6             overflow: hidden;
 7             /* 對溢出的文本用省略號代替 */
 8             text-overflow: ellipsis;
 9         }
10     </style>
相關文章
相關標籤/搜索