I am having a <div>
element and want to set the< div>
vertically center aligned to the left or right of the page.
<div id="qrcode">Content</div>
Below is the CSS I tried:
#qrcode{
position:absolute;
left:100%;
margin-top:200px;
margin-left:-200px;
width:80px;
height:80px;
}
But this not work fine when the size of the <div>
changes.
What should be the properties so that it works regardless of the size of <div>
?