Ok, wenn ich Ihre Frage richtig verstanden habe, würden Sie dies tun;
Sie haben Ihren DIV-Container namens #main-container
y .my-element
die in ihm steckt. Nutzen Sie dies für den Anfang;
#main-container {
position:relative;
}
/*To make the element absolute - floats above all else within the parent container do this.*/
.my-element {
position:absolute;
top:0;
right:10px;
}
/*To make the element apart of elements, something tangible that affects the position of other elements on the same level within the parent then do this;*/
.my-element {
float:right;
margin-right:10px;
}
Übrigens ist es besser, Klassen zu verwenden, wenn Sie auf ein untergeordnetes Element innerhalb einer Seite verweisen (ich nehme an, dass Sie das tun, daher meine Namensänderung oben).