I have an element that should be horizontally centered to another element. The CSS for the centered element is so (I removed uneccesary code):
#center-element{
display: flex;
flex-direction: column;
align-items: stretch;
position: absolute;
}
I have to do so using vanilla JS. I tried:
var targetPos = target.getBoundingClientRect();
centerDiv.style.top = (targetPos.top + targetPos.height) + "px";
centerDiv.style.left = (targetPos.left + (targetPos.width / 2)) + "px";
But that is off. Any ideas?