2017-04-18 49 views
0

我使用onsen-ui創建應用程序。溫泉用戶界面:按鈕,對齊底部

這裏是我的「刪除」按鈕

<div class='form-well'> 
    <br><br> 
    <ons-button style="background-color: red;" modifier="large">Delete</ons-button> 
</div> 

代碼一切都很好,「刪除」按鈕具有適當的大小&顏色,但我希望它會在底部對齊。 (onsen)有適當的「onsenish」方式來做到這一點,或者我應該使用通用的html模式(如How to align content of a div to the bottom?)並猜測像素是我自己的嗎?

delete screen

回答

1

使用CSS position性質就是這樣,我只是使用按鈕瞭解,您可以使用有buttonclassid

button { 
    position: absolute; 
    bottom:0; 
    left:0; 
} 
+0

這基本上是「它沒有溫泉的支持」做你的答案。好。 – Arenim