logo

HTML로 텍스트를 감싸는 방법

텍스트를 Html로 래핑하려면 아래에 제공된 단계를 따라야 합니다. 이러한 단계를 사용하면 모든 사용자는 웹 페이지에 표시될 텍스트를 쉽게 래핑할 수 있습니다.

1 단계: 먼저 텍스트 편집기에 Html 코드를 입력하거나 텍스트를 래핑하려는 텍스트 편집기에서 기존 Html 파일을 열어야 합니다.

 Wrap the text Hello User Your are at JavaTpoint Site . If we want to wrap the text in Html, then we have to follow the steps which are given on this page. 

2 단계: 이제 우리는 줄 바꿈 재산. 따라서 title 태그 바로 뒤의 head 태그 사이에 커서를 놓아야 합니다. 그런 다음 다음 블록에 표시된 대로 태그에 클래스 및 태그 섹터를 정의해야 합니다.

 Wrap the text div { width: 100px; border: 2px solid red; } div.class_name { word-wrap: normal; } 

3단계: 이제 래핑하려는 텍스트 앞에 해당 클래스를 정의해야 합니다.

 Any text which we want to wrap 

4단계: 그리고 마지막으로 파일을 저장하고 브라우저에서 파일을 실행해야 합니다.

 Wrap the text div { width: 100px; border: 2px solid red; } div.a { word-wrap: normal; } div.b { word-wrap: break-word; } Hello User Your are at JavaTpointSite.Ifwe want to wrap the text in Html then we have to follow the steps which are given in this page. <br> Your are at JavaTpointSite.Ifwe want to wrap the text in Html then we have to follow the steps which are given in this page. 
지금 테스트해보세요

위 HTML 코드의 출력은 다음 스크린샷에 표시됩니다.

HTML로 텍스트를 감싸는 방법