I have 2 <label>
in the right corner of div
which located in the center of browser with width/height is 200px/200px. When i change browser size my labels disappears in the right side of browser. How can i make that labels moves to the right side when browser size is changes? I try to make:
.my_label{
position:absolute;
right: 20px;
}
But right
property is right from the browser window, not from the div.
I need that labels move only when it disappears with browser.
Thank you.