如何将按钮的位置更改为窗口内所需的位置?

时间:2017-11-02 06:51:14

标签: html css jqxwidgets

我对窗口的样式有一点疑问,我希望屏幕上的这两个按钮出现在我窗口的右下角。我需要为此标签提供所需的样式,以使按钮显示在底部。 我附上了一个如何改变位置的图像:css造型疑问

enter image description here

帮助将不胜感激。提前谢谢。

3 个答案:

答案 0 :(得分:0)

尝试这样你可以达到你想要的效果。

.wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  background: #ccc;
}
.buttons {
  position: absolute;
  bottom: 0;
  right: 0
}
<div class="wrapper">
 <div class="buttons">
   <button>submit</button>
    <button>reset</button>
 </div>  
</div>

答案 1 :(得分:0)

将两个按钮放在div中并设置div id =&#34;某些内容&#34; 。然后定义#something的css。

#something{
   position:fixed;
   bottom:0;
   right:0;
}

答案 2 :(得分:0)

<button style="position:absolute; bottom:0; right: -290px;">submit</button>

<button style="position:absolute; bottom:0; right: -215px;">cancel</button>

这似乎解决了我对定位按钮的问题。感谢大家的投入