The dirname attribute can be used on <textarea> and <input> elements and describes the directionality of the element's text content during form submission. The browser uses this attribute's value to determine whether text the user has entered is left-to-right or right-to-left oriented. When used, the element's text directionality value is included in form submission data along with the dirname attribute's value as the name of the field.
The format of the submitted data is {dirname_value}={direction} where {dirname_value} is the value of the dirname attribute and {direction} is the directionality of the text. For example, if the user enters "Hello" in an element with the attributes name="comment" and dirname="comment-direction", the URL-encoded form submission data for GET requests will be comment=Hello&comment-direction=ltr. The directionality is one of the following:
The text entered by the user is in a left-to-right writing direction.
If no text directionality is specified, the user agent will use the directionality of the parent element containing the form, and if that is not specified, the default directionality of the user agent.
Examples
Textarea element directionality
In this example, the dir="auto" attribute on the textarea element allows the text directionality to be determined automatically based on the text entered by the user:
html
<formmethod="get"action="https://www.example.com/submit"><textareaname="comment"dir="auto"dirname="comment-direction">سيب</textarea><buttontype="submit">Send my greetings</button></form>
When the user submits the form, the user agent includes two fields, one called comment with the value "سيب", and one called comment-direction with the value "rtl". The URL-encoded submission body looks like this:
In this example, the dir="auto" attribute on the input element allows the text directionality to be determined automatically based on the text entered by the user:
html
<formmethod="get"action="https://www.example.com/submit"><inputtype="text"name="comment-input"dir="auto"dirname="comment-direction"value="Hello"/><buttontype="submit">Send my greetings</button></form>
When the user submits the form, the user agent includes two fields, one called comment-input with the value "Hello", and one called comment-direction with the value "ltr":
The following <input> and <textarea> elements do not have a dir attribute, so they inherit the explicit directionality of their parent element, which is rtl: