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

CSS를 사용하여 단락 텍스트 정렬


단락의 텍스트를 정렬하려면 텍스트 들여쓰기 를 사용하십시오. 재산.

예시

가능한 값은 % 또는 들여쓰기 공백을 지정하는 숫자입니다. 다음 코드를 실행하여 텍스트 색인을 구현할 수 있습니다. CSS가 있는 속성:

<html>
   <head>
   </head>
   <body>
      <p style = "text-indent:2cm;">
         This text will have first line indented by 2cm and this line will remain at
         its actual position this is done by CSS text-indent property.
      </p>
   </body>
</html>