I want the following code to always be in top right, regardless of the size (i.e. when the user resizes the browser window, it is still in the same position):
<div id="navbar"><a href="#">Our Blog</a></div>
The CSS that accompanies this as follows:
#navbar {
position: absolute;
left: 850px;
width: 100px;
padding: 15px 0 0 0;
}
I would like to do it in CSS and HTML only.