两个浮动后以透明方式居中文本

发布于 2024-12-15 10:00:51 字数 451 浏览 3 评论 0原文

这个小提琴的两个问题...

  1. 为什么中间 文本移动到 leftright 文本下方,即使它已分配给它 clear: Both
  2. 即使使用 margin: 0 auto,为什么 middle 文本也不会到达页脚的中间?

我确实设法将文本移至 leftright 下方的中间,但我必须在 周围使用单独的 div 。 h7 id="中">。有办法解决吗?

Two questions for this fiddle...

  1. Why doesn't the middle text move under the left and right texts even though it has clear: both assigned to it?
  2. Why doesn't the middle text go to the middle of the footer even with margin: 0 auto?

I did manage to get the text to the middle under left and right but I had to use a separate div around the <h7 id="middle">. Is there a way around it?

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

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

发布评论

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

评论(1

草莓酥 2024-12-22 10:00:51

我会更精确。 不存在,因此它被渲染为内联元素...所以 clear 不会影响它!

(并且您必须使用 text-align:center; 而不是 margin:auto;,除非您使用指定的宽度)

I'll be more precise. <h7> doesn't exist, so it is rendered as an inline element... So clear doesn't affect it!

(And you'll have to use text-align:center; instead of margin:auto;, unless you use a specified width)

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