为中心使用 AlloyUI

发布于 2024-12-01 16:23:10 字数 472 浏览 1 评论 0原文

我在将一些按钮和图像置于 div 中心时遇到一些问题。请参见下图:

在此处输入图像描述

现在,如您所见,按钮和图像等并未居中(可能值得一提的是,这些东西都在表单标签内)。当然,我有一些居中的测试文本。

我的 HTML 具有以下结构:

<div class="navigationButtons">
   <form>
   </form>

   <p>Some tect that gets centered...</p>
</div>

我的 CSS:

.navigationButtons{
  text-align: center;
}

知道为什么会发生这种情况吗?

I'm having some trouble getting a few buttons and images to center in a div. Please see the below image:

enter image description here

Now as you can see, the buttons and images etc are not getting centered (might be worth mentioning that these things are inside a form tag). Then ofcourse I have some test text that does get centered..

My HTML has the following structure:

<div class="navigationButtons">
   <form>
   </form>

   <p>Some tect that gets centered...</p>
</div>

And my CSS:

.navigationButtons{
  text-align: center;
}

Any idea why this would happen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

笛声青案梦长安 2024-12-08 16:23:10

我无法在您的代码上测试它,但这应该可行。

.navigationButtons { 
  width:auto;
  margin:0 auto;
  text-align:center;
}

或者你可以只对齐表格

.navigationButtons form { 
  width:auto;
  margin:0 auto;
}

I am not able to test it on your code but this should work.

.navigationButtons { 
  width:auto;
  margin:0 auto;
  text-align:center;
}

or you could just align the form

.navigationButtons form { 
  width:auto;
  margin:0 auto;
}
浊酒尽余欢 2024-12-08 16:23:10

这对我有用。 查看此示例

确保没有其他 CSS 规则覆盖您拥有的规则。另外,请在此处发布所有 HTML 代码,因为它可能很重要。

It works for me. See this example.

Make sure no other CSS rules override the ones you have. Also, please post here all of the HTML code as it might be significant.

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