i am trying to align the element of my html page, using css.
I have aligned the element to bottom of page, but when i see the page in print preview. the element is not appearing at bottom
i am using this css to align element to bottom
code:
.bel {
position:relative;
margin-left: 38%;
margin-right: 38%;
bottom:-25pc;
}
html code:
<span class="bel">Text 1</span>
but this is not working...How can i solve this?