HTML: I want to position this paragraph text to bottom of my page?

72,426

Try this code :

  <html>
        <head>
            <title>test</title>
        </head>
        <body>
            <div style="position: relative">
                <p style="position: fixed; bottom: 0; width:100%; text-align: center"> TEXT YOU WANT
                </p>
            </div>
        </body>
    </html>

Share:
72,426
theRadBrad
Author by

theRadBrad

Updated on March 13, 2020

Comments

  • theRadBrad
    theRadBrad over 4 years

    hi,

    Currently the text is at the top of my website but i want it bottom;

     <p style="text-align:relative;">this is best day ever!this is best day ever!this is best day ever!<p> 
    

    when i edit it and add text-align:bottom it dosent works!!!!