HTML의 dir 속성은 요소의 콘텐츠 방향을 설정하는 데 사용됩니다.
이제 HTML에서 dir 속성을 구현하는 예를 살펴보겠습니다 -
예시
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>This is normal text.</p> <p dir="rtl">This text would get displayed from left to right.</p> </body> </html>
출력
위의 예에서 우리는 먼저 일반 텍스트를 설정했습니다 -
<p>This is normal text.</p>
그 후 dir 속성 −
을 사용하여 왼쪽에서 오른쪽 방향으로 텍스트를 표시했습니다.<p dir="rtl">This text would get displayed from left to right.</p>