Solve the automatic line break of vue text overflow

Before solving: 

html:

<div class="intro-text">{
   
   {projectDetailsList.introduction}}</div>

 css:

 .intro-text {
        word-break: break-all;
        word-wrap: break-word;
      }

 After solving:

Guess you like

Origin blog.csdn.net/maowencai/article/details/128247666