在下面的代码中,我将输入按钮添加到了 leftPane div。
这里我有两个 div/左 80% 和右 20%。
现在我想将此按钮垂直放置在 leftPane 的中间和右侧。
但是当我设置 'right:0;' 时它位于浏览器的右侧,而不是 leftPane 的右侧。
为什么?
<body style="overflow:hidden;">
<div style="background: #ff0000; position: fixed; top:0; left:0; width:100%; height:100%;">
<div id="leftPage" style="width:80%; height:100%;background:#00ff00; float:left;text-align:center;">
<img src="http://fc07.deviantart.net/fs45/f/2009/106/c/1/HD_Nature_Wallpapers_by_CurtiXs.jpg" alt="test" style="max-width:90%; max-height:90%;"/>
<input type="submit" value="Next" style="width:40px;height:70px;position:absolute;top:50%;right:0;"/>
</div>
<div id="rightPane" style="width:20%; height:100%;background:#0000ff; float:left;">
<div id="commentBox" style="background:#dddddd; width:90%; height: 50px;">
<input type="text" placeholder="Enter here..." />
</div>
</div>
</div>
</body>
最佳答案
您需要拥有父 <div style="position: relative;">
否则您的绝对定位默认为您的 <body>
澄清一下,将 #leftPage
设置为相对定位。
关于html - 绝对定位按钮未定位在其父 DIV 中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8184185/