两个浮动后以透明方式居中文本
这个小提琴的两个问题...
- 为什么
中间
文本移动到left
和right
文本下方,即使它已分配给它clear: Both
? - 即使使用
margin: 0 auto
,为什么middle
文本也不会到达页脚的中间?
我确实设法将文本移至 left
和 right
下方的中间,但我必须在 周围使用单独的
。有办法解决吗?div
。 h7 id="中">
Two questions for this fiddle...
- Why doesn't the
middle
text move under theleft
andright
texts even though it hasclear: both
assigned to it? - Why doesn't the
middle
text go to the middle of the footer even withmargin: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会更精确。
不存在,因此它被渲染为内联元素...所以clear
不会影响它!(并且您必须使用
text-align:center;
而不是margin:auto;
,除非您使用指定的宽度)I'll be more precise.
<h7>
doesn't exist, so it is rendered as an inline element... Soclear
doesn't affect it!(And you'll have to use
text-align:center;
instead ofmargin:auto;
, unless you use a specified width)