我有两行代码。 show1和show2是我的JSP页面上的按钮,根据下面的代码定位。但是,按钮show2显示在按钮show1的下方。如何解决此问题。
document.getElementById('show1').style.marginTop="33%";
document.getElementById('show2').style.marginTop="33%";
答案 0 :(得分:1)
确保您为每个人使用position: absolute;
。
document.getElementById('show1').style.position = 'absolute';
document.getElementById('show2').style.position = 'absolute';