gpt4 book ai didi

html - 在第二个框外添加第三个框

转载 作者:行者123 更新时间:2023-11-28 14:40:39 26 4
gpt4 key购买 nike

我写了一个简单的代码让两个盒子居中对齐,尺寸不同现在我想根据第二个(灰色)的尺寸添加第三个,并从第二个之外开始。第二个(灰色)是铁芯,第三个是我想绕在铁芯上的线圈,但它有自己的尺寸。这就是为什么我要基于秒的维度。请你能帮我做到吗?非常感谢您!

亲切的问候,乔治

代码如下:

<html>
<head>
<style>
#container {
display: flex;
justify-content: center;
align-items: center;
}

.box1 {
display: flex;
justify-content: center;
align-items: center;
margin: 50px;
background: black;
height: 50px;
width: 200px;
border-radius:20px
}

.box2 {
display: flex;
justify-content: center;
align-items: center;
margin: -1000px;
background: grey;
height: 10px;
width: 100px;
border-radius:5px
}
</style>
</head>

<div id="container">

<div class="box1">
<div class="box2">
<div></div>
</div>
</div>

</div><!-- end #container -->
</html>

最佳答案

因此将灰色视为核心,将其周围的红色边框视为线圈。这是您希望完成的方式吗?

#container {
display: flex;
justify-content: center;
align-items: center;
}

.box1 {
display: flex;
justify-content: center;
align-items: center;
margin: 50px;
background: black;
height: 50px;
width: 200px;
border-radius: 20px
}

.box2 {
display: flex;
justify-content: center;
align-items: center;
margin: -1000px;
background: grey;
height: 10px;
width: 100px;
border-radius: 5px;
position: relative;
}

.box2:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 2px solid red;
border-radius: 5px;
}
<div id="container">
<div class="box1">
<div class="box2">

</div>
</div>
</div>
<!-- end #container -->

关于html - 在第二个框外添加第三个框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53007655/

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