word-wrap 속성은 한 줄을 나누고 다음 줄로 넘어가는 데 사용됩니다.
예제 구문은 아래와 같습니다. −
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>
위 내용은 CSS 단어 줄 바꿈 속성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!