gpt4 book ai didi

HTML/CSS : Centering after float element

转载 作者:行者123 更新时间:2023-11-28 02:15:54 25 4
gpt4 key购买 nike

我的页面左侧有一个 float 元素。

现在在这个 float 之后,我想将其余内容居中。

请看这里:http://jsfiddle.net/ETm93/13/

这就是我现在拥有的。我确实漂浮:离开了。我可以做 float: right 让它到右边,但我应该如何让它以 float 元素之后的空间为中心。示例:

   IMAGE (that is floated) |                   stuff here in middle                 |..

我该怎么做?

最佳答案

使用text-align: centerdisplay: inline

#profile_leftPanel{
width: 150px;
float: left;
border-right: 1px solid #666;
margin-right: 20px;
}

#profile_rightPanel_center {
margin-left:auto;
margin-right: auto;
text-align: center;
}

#recentStatus{
width: 400px;
text-align: center;
display: inline;
}

参见 http://jsfiddle.net/adamzr/QbMmX/

关于HTML/CSS : Centering after float element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4412348/

25 4 0
文章推荐: html - 影响导航栏对齐的图像
文章推荐: php - 在网页上打印表格数据的库
文章推荐: javascript - 我可以使用 HTML5 的 Canvas 元素在框架内加载不同的网页吗?
文章推荐: javascript - 当
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com