Onsen UI:按钮,底部对齐
Onsen UI: button, aligned to bottom
我正在使用温泉创建应用程序-ui。
这是我的 "delete" 按钮的代码
<div class='form-well'>
<br><br>
<ons-button style="background-color: red;" modifier="large">Delete</ons-button>
</div>
一切都很好,"Delete" 按钮的大小和颜色都合适,但我希望它在底部对齐。
图书馆(温泉)是否有适当的 "onsenish" 方法来做到这一点,或者我应该使用通用 html 模式(像这样 How to align content of a div to the bottom?)并自己猜测像素?
像这样使用 css position
属性,我只是使用按钮来理解你可以在那里使用 button
class
或 id
.
button {
position: absolute;
bottom:0;
left:0;
}
如果你想用 onsen.io
你可以找到你的答案
我正在使用温泉创建应用程序-ui。
这是我的 "delete" 按钮的代码
<div class='form-well'>
<br><br>
<ons-button style="background-color: red;" modifier="large">Delete</ons-button>
</div>
一切都很好,"Delete" 按钮的大小和颜色都合适,但我希望它在底部对齐。
图书馆(温泉)是否有适当的 "onsenish" 方法来做到这一点,或者我应该使用通用 html 模式(像这样 How to align content of a div to the bottom?)并自己猜测像素?
像这样使用 css position
属性,我只是使用按钮来理解你可以在那里使用 button
class
或 id
.
button {
position: absolute;
bottom:0;
left:0;
}
如果你想用 onsen.io
你可以找到你的答案