How To Position Pernament Div In Custom Place On Page
I have problem with positiong div with content in custom place on page pernament way , that means div will be 20px of bottom no matter what:). Problem is that i using online invoic
Solution 1:
I think you're looking for the position:fixed CSS attribute.
See this fiddle.
.fixed {
position: fixed;
top:20px;
left:20px;
}
Post a Comment for "How To Position Pernament Div In Custom Place On Page"