我需要以某种方式组合绝对position
,以便margin-top
将从文本的第二行开始计算。目前margin-top
对我不起作用。
如果我使用relative
位置按钮会转到页面底部,但我需要它保留在原来的位置,但使用margin
。我怎样才能做到这一点?
#ok_btn {
width: 120px;
position: absolute;
right: 0;
bottom: 0;
margin-right: 22px;
margin-top: 22px;
}
<!-- begin snippet: js hide: false console: true babel: false -->
<div id="userPopup"
title="Warning">
<spring:theme code="text.popup.warning.company_user" />
<p />
<button class="tiny button" id="ok_btn"
onclick="closeDialogUser();">
<spring:theme code="text.ok" />
</button>
</div>
图像显示了它现在的放置方式
应该是这样的: