Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML의 섹션 내에서 잠재적인 단어 중단점을 표시하는 방법은 무엇입니까?


HTML 태그는 필요한 경우 잠재적인 줄 중단점을 정의합니다. 이것은 단어 나누기 기회를 의미합니다.

예시

HTML에서 태그를 구현하는 방법을 배우기 위해 다음 코드를 실행할 수 있습니다 −

<!DOCTYPE html>
<html>
   <head>
      <title>HTML wbr Tag</title>
   </head>
   <body>
      <wbr />The browser to extend the document window beyond the size
      of the viewing pane and the poor user must scroll right<wbr />
   </body>
</html>