gpt4 book ai didi

html - 剩余空间居中和居中的CSS

转载 作者:太空宇宙 更新时间:2023-11-04 15:52:55 25 4
gpt4 key购买 nike

我当前的元素中有一个当前问题,我想在其中放置一些文本。此文本可能与该区域的每次使用不同。

这部分我已经完全理解了,但是我想放置另一段文字,恰好在第一个文字末尾和区域末尾之间剩余空间的中心。

我将如何构建我的 css 和 html 以实现这一点?

下图应该有助于显示它是什么,我想做什么:

Issue regaring proper css for centering and center of remaining room

html,
body {
height: 100%;
text-align: center;
}

#left {
width: 200px;
display: inline-block;
background: #f00;
height: 200px;
justify-content: center;
}

#right {
display: inline-block;
background: #0f0;
height: 200px;
}
<div id="left">
CONTENT
</div>
<div id="right">
Other content
</div>

编辑:抱歉没有包含代码我的尝试:http://jsfiddle.net/5jRaY/298/

我得到了想要的红色 block ,除了 div 应该包裹容器。我的问题是我无法让绿框填充页面的剩余空间。

最佳答案

您可以尝试不同的布局。这就是我将要使用的:

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

#wrapper {
display: table;
width: 100%;
text-align: center;
}

#one,
#two,
#three {
display: table-cell;
width: 33.333%;
}

#one {
width: 200px;
height: 200px;
background: white; /*Change color to see it*/
}

#two {
background: red;
height: 200px;
}

#three {
height: 200px;
background: green;
}
<div id="wrapper">
<div id="one"></div>
<div id="two">CONTENT</div>
<div id="three">Other content</div>
</div>

让我知道它是否适合您!

关于html - 剩余空间居中和居中的CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48425883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com