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

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>