whats the code to align text to right/left? |
whats the code to align text to right/left? |
![]()
Post
#1
|
|
Heart | broken -Once again. ![]() ![]() ![]() ![]() Group: Member Posts: 260 Joined: Mar 2005 Member No: 109,092 ![]() |
whats the code to align text to right/left?...because i want to make a certain words align to the right or left
|
|
|
![]() |
*mipadi* |
![]()
Post
#2
|
Guest ![]() |
CODE <p align="left">, <p align="right"> That will align anything in a P tag. To align things in a DIV tag, just do: CODE <div align="left">, <div align="right"> Or you can edit a stylesheet to do it for you: CODE DIV.left {
text-align:left; } DIV.right { text-align:right; } |
|
|
![]() ![]() |