本文主要是介绍微信小程序如何解决botton按钮对齐问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
如果botton不在其他控件下层,或者上层控件类型不为flex,可以用float调整botton显示位置,如float=right,则botton显示在右侧。
<button type="primary" style="float: right;">测试</button><view style="display: block;"><button type="primary" style="float: right;">测试</button>
</view>
如果botton上层控件类型为flex,可以通过设置position=absoluted调整显示位置。
<view style="display: flex;"><button type="primary" style="position: absolute;right: 0;">测试</button>
</view>
更多微信小程序内容欢迎关注博主。
有帮助欢迎打赏。
这篇关于微信小程序如何解决botton按钮对齐问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!