243
Views
3
Comments
CSS,Define the input text appear on the right side  in the input widget.
Question

Hello

how to define the css if i want the input data  to be appeared from the right side in the form .

Like this photo, the postal code would be shown from the right side.

Setting the postal Code in the Container(postalcode), i tried to write the css. it s not correct yet. if you know, let me be known.

thank you 

2019-07-15 16-33-07
Anna Wojdyla

Hello Ann,


Try please creating PostalCode class and assign it directly to the input.

Best regards,


Ania

2018-08-26 20-34-32
Pankaj pant

Hi Ann,

Use CSS direction Property.
The direction property specifies the text direction/writing direction within a block-level element.

SyntaxEditor Code Snippet

.YourClass{
    direction: rtl;
}

Regards,

Pankaj

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.