<div dir="RTL">
Hello There!
</div>
는 !Hello There 로 보이기 때문에
<div dir="RTL">
<bdi>
Hello There!
</bdi>
</div>
<bdi> 태그를 넣어줘야 한다
select인 경우에는
select {
width: 200px;
}
.rtl {
direction: rtl;
}
.ltr {
direction: ltr;
}
<select class="rtl">
<option class="ltr">English (United States)</option>
<option class="rtl">(ישראל) עִברִית</option>
</select>
'기록' 카테고리의 다른 글
프론트엔드 용어 정리 (0) | 2020.11.22 |
---|---|
자바스크립트 엔진 (0) | 2020.11.22 |
[Vue] 뒤로가기 막기 (1) | 2020.11.12 |
[Vue] global mixins (0) | 2020.11.12 |
git 초기화 (0) | 2020.11.03 |