i have a problem with displaying a horizontal rule (<hr />).
i am trying to display a <hr /> 35 pixels from the bottom of the page.
this doesnt seem to work. any ideas on how to do this?HTML Code:<hr style="position:absolute; bottom:35px;" />
Printable View
i have a problem with displaying a horizontal rule (<hr />).
i am trying to display a <hr /> 35 pixels from the bottom of the page.
this doesnt seem to work. any ideas on how to do this?HTML Code:<hr style="position:absolute; bottom:35px;" />
I am not sure what isn't working for you. The above works fine for me. The only thing that I added was a left property because if it's not specified the left property isn't defined and appears in the document to the right of the last element. If you are using absolute positioning you should specify top or bottom and left or right.HTML Code:<hr style = "position:absolute; left:10px; bottom:35px;" />
thanks for the help.
i got it to work by adding the left and right properties.
make this thread resolved