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

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>