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

CSS에서 텍스트 사이의 공백을 설정하는 방법은 무엇입니까?

<시간/>

텍스트 사이에 공백을 설정하려면 공백을 사용하세요. 재산. 가능한 값은 normal, pre, nowrap입니다.

예시

다음 코드를 실행하여 CSS에서 텍스트 사이의 공백을 설정할 수 있습니다.

<html>
   <head>
   </head>
   <body>
      <p style = "white-space:pre;">
         This text has a line break and the white-space pre setting tells the browser to honor
         it just like the HTML pre tag.</p>
   </body>
</html>