Wrapper/outer div to keep inner div top right regardless of resolution:
<html><head>
<style type=”text/css”>
#divnamewrap{
height:140px;
width:100%;
position:absolute;
left:0px;
top:0px;
}
#divname{
height:140px;
width:185px;
position:relative;
z-index:0;
float:right;
}
</style>
</head>
<body>
<div id=”divnamewrap”>
<div id=”divname”>div content here </div> <!– top right this div will appear that’s why we used wrapper so that change of resolution should keep it on right –>
</div>
</body>
</html>
