这就是我的目标。我有两个圈子。内部是固定的,外部是动态的并且会增长/收缩。两个圆应该是同心的。所以我创建了两个分区,将边界半径设为 50% 来创建圆圈。我使用表格单元法将它们垂直居中。但是,我现在需要将外部 div 在 body 中垂直居中。我怎样才能做到这一点?
编辑:http: //jsfiddle.net/G28t8/
function updateCircle(){
document.getElementById("outercircle").style.width = parseInt(document.getElementById("outercircle").style.width.split("px")[0]) + 5 + "px";
document.getElementById("outercircle").style.height = parseInt(document.getElementById("outercircle").style.height.split("px")[0]) + 5 + "px";
document.getElementById("outercircle").style.lineHeight = document.getElementById("outercircle").style.height;
}