0

我有以下两行代码。show1 和 show2 是我的 JSP 页面上的按钮,根据下面的代码定位。但是,按钮 show2 显示在按钮 show1 的下方。如何解决这个问题。

  document.getElementById('show1').style.marginTop="33%";

  document.getElementById('show2').style.marginTop="33%";
4

1 回答 1

1

确保您正在使用position: absolute;它们中的每一个。

document.getElementById('show1').style.position = 'absolute';
document.getElementById('show2').style.position = 'absolute';
于 2012-09-17T21:23:41.127 回答