반응형
텍스트 방향 Text Direction
이 direction속성은 요소의 텍스트 방향을 변경하는 데 사용됩니다.
Example
div {
direction: rtl;
}
<!DOCTYPE html>
<html>
<head>
<style>
div.ex1 {
direction: rtl;
}
</style>
</head>
<body>
<div>This is default text direction.</div>
<div class="ex1">This is right-to-left text direction.</div>
</body>
</html>
반응형
'IT > css' 카테고리의 다른 글
css Text Indentation 텍스트 들여 쓰기 (0) | 2017.02.14 |
---|---|
css 텍스트 변환 Text Transformation (0) | 2017.02.14 |
css 라인 높이 Line Height (0) | 2017.02.13 |
css 글자 간격 Letter Spacing (0) | 2017.02.13 |
css Text Alignment (0) | 2017.02.06 |