pat7047
10-29-2004, 04:10 AM
How do i get the font on the absolute bottom of the page?
|
View Full Version : Font pat7047 10-29-2004, 04:10 AM How do i get the font on the absolute bottom of the page? kittycat 10-29-2004, 09:34 PM <div style="position: absolute; bottom:0;"> text here </div> Try that and see if it's what you want... pat7047 10-30-2004, 12:16 AM Hmm...maybe that isn't what i wanted. Do you know how to position the text to a specific area of the page? kittycat 10-30-2004, 01:17 AM Basically the same code... <div style="position: absolute; top: 100px; left: 100px;"> text here </div> Change the number values to the ones you want. Top can be interchanged with bottom, left with right. |