CSS將超出容器寬度的文字自動替換為省略號
阿新 • • 發佈:2018-12-10
可使用text-overflow屬性。效果如下圖所示
<template> <section> <p id="clip">clip在內容區域上午極限處截斷</p> <p id="ellipsis">ellipsis在內容區域的極限處將內容替換成省略號</p> <p id="str">字串在內容區域的極限處將內容替換成省略號</p> </section> </template> <style lang="scss" scoped> #clip { width:100px; white-space: nowrap; overflow: hidden; text-overflow: clip } #ellipsis { width:100px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis } #str { width:100px; white-space: nowrap; overflow: hidden; text-overflow: "!!!" } </style>