如何将Flex应用程序左对齐?

发布于 2024-10-08 03:39:42 字数 264 浏览 2 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌逼全场 2024-10-15 03:39:42

添加应用程序内容所在的根画布,并将其 left 属性设置为 0。

这会将其“锚定”到应用程序窗口的左边缘。

您也可以在设计器中执行此操作:

Anchor Left Example

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:

Anchor Left Example

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文