dir 속성

2020. 12. 18. 15:15

direction의 약자로 문자의 방향을 설정할 수 있다.(DOS의 directory가 아님)

 

<!DOCTYPE html>
	<html>
	<head>
		<title>Love one another</title>
	</head>
	<body>
		<div dir="ltr">And he entered into a ship.</div>
		<div dir="rtl">And he entered into a ship.</div>
		<div dir="rtl">pihs a otni deretne eh dnA.</div>
		<div dir="auto">And he entered into a ship.</div>
	</body>
</html>

 

 

의미
ltr 기본값, 왼쪽에서 오른쪽으로 
rtl 오른쪽에서 왼쪽으로
auto 브라우저가 자동으로 방향 설정

 

See the Pen bGwgPrp by Yoo (@spiegel) on CodePen.

 

 

반응형

'HTML' 카테고리의 다른 글

hidden 속성  (0) 2020.12.20
draggable 속성  (0) 2020.12.18
data-* 속성  (0) 2020.12.18
contenteditable 속성  (0) 2020.12.13
class 속성  (0) 2020.12.11