美文网首页
Css 文字换行的几种样式!

Css 文字换行的几种样式!

作者: DragonersLi | 来源:发表于2017-08-13 14:41 被阅读470次
    <style>
    .div{width:400px;border:1px solid red;margin-top:10px;}
    .div1{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
    .div2{word-wrap: break-word;}
    .div3{word-break: normal;}
    .div4{word-break:break-all;} 
    </style>
    
    
    <p>当文字或单词超出DIV宽度,则自动隐藏。用...代替!</p>
    <div class="div div1" >
    当文字或单词超出DIV宽度,则自动隐藏。用...代替!
    English is a West Germanic language that was first spoken in early medieval England and is now a global lingua franca. 
    It is widely learned as a second language and is an official language of the European Union, many Commonwealth countries and the United Nations, 
    as well as in many world organisations. 
     </div>
     
    <p>当单词遇到换行,单词不拆开!</p>
    <div class="div div2" >
    当单词遇到换行,单词不拆开!
    English is a West Germanic language that was first spoken in early medieval England and is now a global lingua franca. 
    It is widely learned as a second language and is an official language of the European Union, many Commonwealth countries and the United Nations, 
    as well as in many world organisations. 
    </div>
    
    
    <p>当单词遇到换行,单词不拆开!</p>
    <div class="div div3" >
    当单词遇到换行,单词不拆开!
    English is a West Germanic language that was first spoken in early medieval England and is now a global lingua franca. 
    It is widely learned as a second language and is an official language of the European Union, many Commonwealth countries and the United Nations, 
    as well as in many world organisations. 
    </div>
    
    
    
    <p>当单词遇到换行,单词拆开!</p>
    <div class="div div4" >
    当单词遇到换行,单词拆开!
    English is a West Germanic language that was first spoken in early medieval England and is now a global lingua franca. 
    It is widely learned as a second language and is an official language of the European Union, many Commonwealth countries and the United Nations, 
    as well as in many world organisations. 
    </div>
     
    
    
    Paste_Image.png

    相关文章

      网友评论

          本文标题:Css 文字换行的几种样式!

          本文链接:https://www.haomeiwen.com/subject/cmqerxtx.html