HTML div css 強制 換行 不換行

來源:互聯網
上載者:User
1、強制不換行,同時以省略符號結尾。
<div style="width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" >
你好朋友朋友朋友我為什麼不能看到效果啊
</div>
2、css自動換行
div{ word-wrap: break-word; word-break: normal; }

3、css強制英文單詞斷行
div{word-break:break-all;}
若是div嵌套,要使內層div根據內容自動換行,則可只設定外層的div寬,和 white-spance:nowrap即可。

word-break:break-all和word-wrap:break-word都是能使其容器如DIV的內容自動換行
它們的區別就在於:
1,word-break:break-all 例如div寬200px,它的內容就會到200px自動換行,如果該行末端有個英文單詞很長(congratulation等),它會把單詞截斷,變成該行末端為conra(congratulation的前端部分),下一行為tulation(conguatulation)的後端部分了。
2,word-wrap:break-word 例子與上面一樣,但區別就是它會把congratulation整個單詞看成一個整體,如果該行末端寬度不夠顯示整個單詞,它會自動把整個單詞放到下一行,而不會把單詞截斷掉的。

  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.