text-overflow屬性用於指定當文字溢出包含它的元素時,應該發生的事情。
CSS3 text-overflow屬性
作用:text-overflow 屬性規定當文字溢出包含元素時發生的事情。
語法:
text-overflow: clip|ellipsis|string;
clip:修剪文字。
ellipsis:顯示省略符號來代表修剪的文字。
string:使用給定的字串來代表被修剪的文字。
附註:所有主流瀏覽器都支援 text-overflow 屬性。
CSS3 text-overflow屬性的使用範例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> div.test { white-space:nowrap; width:12em; overflow:hidden; border:1px solid #000000; } div.test:hover { text-overflow:inherit; overflow:visible; } </style> </head> <body> <p>将鼠标移动到框内,查看效果.</p> <div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div> <br> <div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div> </body> </html>
效果圖:
#本文參考:https://www.html.cn/book/css/properties/user-interface/text-overflow.htm
#以上是text-overflow屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!