vote up 2 vote down star
1

Hello,

I have a couple of

tags that I want to right align. Does anyone know how to do this?

flag

68% accept rate
Also, since Markdown allows some HTML tags, you should escape the <p> tag with a &amp;lt; on the < symbol – foxxtrot Jan 6 '09 at 21:23
@foxxtrot: there's no Markdown in comments, though. – P Daddy Jan 6 '09 at 21:36

3 Answers

vote up 17 vote down check

CSS:

p {
    text-align: right;
}

INLINE:

<p style="text-align: right">Some Text</p>

jQuery:

$('p').css('text-align', 'right');

Javascript:

var aElements = document.getElementsByTagName('p');
for (var i = 0; i < aElements.length; i++) {
    aElements[i].style.textAlign = 'right';
}
link|flag
Great thanks. I kept seeing vertical-align, but was getting annoyed when I couldn't find horizontal-align. – Xaisoft Jan 6 '09 at 19:53
Wow, that was a quick pile of points. – Diodeus Jan 6 '09 at 20:10
great answer giving 4 different solutions and examples, I would lean to the css solution. – Berek Bryan Jan 6 '09 at 20:40
vote up 6 vote down

It depends. Do you want the entire paragraph to align to the right side of whatever container it's in? Or do you want the text of the paragraph to align to the right margin of the paragraph?

If it's the first, look into the float: right; CSS directive. The latter, text-align: right;

link|flag
vote up 5 vote down

Even most experts on CSS use a reference. Find one you like.

http://xhtml.com/en/css/reference/

link|flag
Thanks. I am sure this will be helpful. – Xaisoft Jan 6 '09 at 19:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.