Search
 
SCRIPT & CODE EXAMPLE
 

HTML

what is dir attribute in html

<!--An attribute indicating the directionality of the text-->
<!--ltr: left to right, rtl: right to left, auto: algorithm decides-->
<p dir="rtl">This paragraph is in English but incorrectly goes right to left.</p>
<p dir="ltr">This paragraph is in English and correctly goes left to right.</p>

<hr>

<p>هذه الفقرة باللغة العربية ولكن بشكل خاطئ من اليسار إلى اليمين.</p>
<p dir="auto">هذه الفقرة باللغة العربية ، لذا يجب الانتقال من اليمين إلى اليسار.</p>
Comment

dir in html

A paragraph with a right-to-left direction:

  <p dir="rtl">Write this text right-to-left!</p>

Value :
 ltr	Default. Left-to-right text direction
 rtl	Right-to-left text direction
 auto	Let the browser figure out the text direction, based on the content (only recommended if the text direction is unknown)
Comment

PREVIOUS NEXT
Code Example
Html :: how to start a html file 
Html :: input type submit align center 
Html :: background music html autoplay hidden 
Html :: bootstrap table combine columns 
Html :: html basic code 
Html :: side by side tables in bootstrap 
Html :: getproductpricehtml magento 2 
Html :: euro html 
Html :: ionic ngfor object 
Html :: html how to make element focusable 
Html :: input text size 
Html :: tailwind container 
Html :: swiper js arrows 
Html :: what is the difference between span and div 
Html :: how to align span to right 
Html :: html add a delay to link 
Html :: how to add datepicker in bootstrap(html form) 
Html :: add custom validation input message html 
Html :: placeholder image html 
Html :: js input change form submit 
Html :: meta theme-color 
Html :: set default selected option in select form laravel 
Html :: html multiply 
Html :: how to add links to html 
Html :: font asweome cdn 
Html :: css change color on hover 
Html :: how to set logo in html in header 
Html :: javascript on lose focus 
Html :: html qr code generator 
Html :: html tag for modal 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =