Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I trying to align a text inside the p tag i have used this code

HTML
<p align="left">Text</p>


but its aligning completely left . i need some space to left then text

please any code for this


Thanku
Posted

Try this:
<p style="text-align: left; margin-left:20px;">Text</p>

Read more: http://www.w3schools.com/css/css_boxmodel.asp[^]
 
Share this answer
 
v3
You can try this:

HTML
<p align="left" style="padding-left: 20px;">Text</p>


If not work then tell me the exact requirement.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900