Break the line and wrap onto next line with CSS


Use the word-wrap property to break the line and wrap onto next line. You can try to run the following code to implement a word-wrap property in CSS

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 200px;
            border: 2px solid #000000;
         }
         div.b {
            word-wrap: break-word;
         }
      </style>
   </head>
   <body>
      <h2>word-wrap: break-word property</h2>
      <div class = "b"> ThisisdemotextThisisdemotext:
      thisisaveryveryveryveryveryverylongword.
      The long word wraps to the next line.</div>
   </body>
</html>

Output

Updated on: 20-Jun-2020

650 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements