Computer >> Máy Tính >  >> Lập trình >> CSS

Ngắt dòng và quấn vào dòng tiếp theo bằng CSS

Sử dụng thuộc tính word-wrap để ngắt dòng và quấn vào dòng tiếp theo. Bạn có thể thử chạy mã sau để triển khai thuộc tính word-wrap trong CSS

Ví dụ

<!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>

Đầu ra

Ngắt dòng và quấn vào dòng tiếp theo bằng CSS