2
I’m failing to position my element at the top and the right end of the div. See that my div is slightly yellowish color, and my element "x" in red. This "x" is what I want to position.
.ExcluirRelativePosition {
position: absolute;
top: -10px;
left: 115px;
}
I would like to know how to position my element independent of Div’s size, because my div varies in size, so mine position: absolute;
need to work with something dynamic and not by pixels as most examples available.