如何混合CSS绝对定位?

时间:2017-04-12 14:51:45

标签: css user-interface

我需要以某种方式组合绝对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>

图像显示了它现在的放置方式

enter image description here

应该是这样的:

enter image description here

0 个答案:

没有答案