Wed, 2017-01-18 10:41
Most of my blog post are in Urdu, but text alignment is coming form left to right which is affecting look of my blog posts. How can i change text alignment from right to left for my blog page?
Wed, 2017-01-18 21:13
#1
direction
You may use the html attribute, dir, or the css property, direction. Plus there are other methods that I leave as an exercise for the class.
<body dir="rtl">...</body> <!-- right to left --> or, the css body { direction: rtl;} /*right to left*/
cheers,
gary