Rifts Posted March 15, 2010 Share Posted March 15, 2010 hey guys ok im trying to move some text to the right i know i can use but it looks so crappy is there any other way to move text over besides that or css margin? Quote Link to comment Share on other sites More sharing options...
beta0x64 Posted March 15, 2010 Share Posted March 15, 2010 You could try... http://www.w3schools.com/Css/pr_text_text-indent.asp or text-align or something to that effect. Quote Link to comment Share on other sites More sharing options...
shlumph Posted March 15, 2010 Share Posted March 15, 2010 Like beta mentioned, the best way to do this is using CSS: //css p.right { text-align: center; } //html <p class="right">this is on the right side</p> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.