如何将Flex应用程序左对齐?
如何在 Flex 中将我的应用程序向左对齐?
该应用程序水平居中,当我调整浏览器窗口大小时,它保持居中。 它不是 css 填充,而是 Flex 填充,所以我想我可以使用 Flex 代码。
我尝试将以下属性添加到应用程序容器:paddingLeft =“0”,left =“0”..但它不起作用。仍居中。
我还尝试在 html/javascript 代码中设置“align”、“left”,但它不能解决问题,因为填充位于 Flex 应用程序内部。
谢谢
How can align my application to the left in Flex ?
The application is horizontally centered and when I resize the browser window it stays centered.
It is not css padding, it is flex padding, so I guess I have work with Flex code.
I've tried to add the following properties to the Application container: paddingLeft="0", left="0".. but it doesn't work. Still centered.
I've also tried to set "align","left" in the html/javascript code, but it doesn't solve the issue, because the padding is inside the flex application.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加应用程序内容所在的根画布,并将其 left 属性设置为 0。
这会将其“锚定”到应用程序窗口的左边缘。
您也可以在设计器中执行此操作:
Add a root canvas in which your application content sits and set its left property to 0.
This will 'anchor' it to the left edge of your application window.
You can also do it in the designer: