我的元素应水平以另一个元素为中心。中心元素的CSS是如此(我删除了不安全的代码):
#center-element{
display: flex;
flex-direction: column;
align-items: stretch;
position: absolute;
}
我必须使用香草JS这样做。我尝试了:
var targetPos = target.getBoundingClientRect();
centerDiv.style.top = (targetPos.top + targetPos.height) + "px";
centerDiv.style.left = (targetPos.left + (targetPos.width / 2)) + "px";
,但这已经关闭了。有什么想法吗?
jsfiddle
//Somehow center the div here
var target = document.getElementById("target");
var centerDiv = document.getElementById("centerDiv");
var targetPos = target.getBoundingClientRect();
centerDiv.style.top = targetPos.bottom + "px";
centerDiv.style.left = targetPos.left + (target.offsetWidth - centerDiv.offsetWidth) / 2 + "px";
#target {
background-color: lightblue;
text-align: center;
width: 75%;
}
#centerDiv {
display: flex;
flex-direction: column;
align-items: stretch;
position: absolute;
}
<div id="target">
This is the div
</div>
<div id="centerDiv">
This is supposed to be horizontally centered <em>to the div element above</em>
</div>
您可以使用Flexbox进行操作。您可以将两个Div包装在容器div中,并在该容器上应用display:flex;
。
#target {
background-color: lightblue;
text-align: center;
width: 100%;
}
#centerDiv {
/* display: flex;
flex-direction: column;
align-items: stretch;
position: absolute; */
text-align:center;
}
.container{
display:flex;
width:75%;
flex-direction:column;
align-items:center;
justify-content:center;
}
<div class="container"><div id="target">
This is the div
</div>
<div id="centerDiv">
This is supposed to be horizontally centered <em><br/>to the div element above</em>
</div>
</div>