gpt4 book ai didi

css - 无法将我的 DIV 彼此对齐

转载 作者:行者123 更新时间:2023-11-28 08:48:37 25 4
gpt4 key购买 nike

出于某种原因,我无法将我的 div 彼此对齐。 “右”在“左”之下我的代码有什么问题? Aligment issueHTML:

<div id="activity-container">
<div id="activity-left">left</div>
<div id="activity-right">right</div>
</div>

CSS:

#activity-container
{
width:90%;
background-color:#FFFF00;
Height:400px;
margin-left: auto;
margin-right: auto;
}

#activity-left {
border: 1px solid black;
color:#000;
margin: 0 auto;
width: 20%;
float: left;
position: relative;
}

#activity-right {
border: 1px solid black;
margin: 0 auto;
color:#000;
width: 80%;
float: left;
position: relative;
}

现场演示:Tinkerbin

最佳答案

div 上的边框 - 将 2px 添加到它们的宽度。删除它们,它们将彼此相邻 - jsFiddle

如果您确实需要边框,则使用outline 模拟它们 - jsFiddle

#activity-left {
outline: 1px solid #000;
color:#000;
margin: 0 auto;
width: 20%;
float: left;
position: relative;
}

#activity-right {
outline: 1px solid #000;
margin: 0 auto;
color:#000;
width: 80%;
float: left;
position: relative;
}​

关于css - 无法将我的 DIV 彼此对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11707989/

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