gpt4 book ai didi

html - css如何在中心圆旁边创建2条水平线?

转载 作者:行者123 更新时间:2023-12-04 03:23:23 24 4
gpt4 key购买 nike

css如何在中心圆旁边创建2条水平线?
我想连接彼此相邻的盒子,它们的位置居中,我该怎么做?

#login {
display: flex;
text-align: left;
align-items: center;
justify-content: center;
flex-direction: row;
}

.elips {
width: 10rem;
height: 10rem;
background-color: red;
padding: red 2rem;

border-radius: 50%;
}

.box {
width: 5rem;
height: 2rem;
background-color: black;
}
  <div id="login">
<div class="elips"></div>
<div><pre>-----
-----<pre>
</div>
<div class="box"></div>

最佳答案

您可以将 dashed border style 用于中间 div。您不需要为此使用文本。

#login {
display: flex;
text-align: left;
align-items: center;
justify-content: center;
flex-direction: row;
}

.elips {
width: 10rem;
height: 10rem;
background-color: red;
padding: red 2rem;
border-radius: 50%;
}

.box {
width: 5rem;
height: 2rem;
background-color: black;
}

.dashed-lines {
border: 2px dashed black;
width: 50px;
height: 5px;
border-left: transparent;
border-right: transparent;
}
<div id="login">
<div class="elips"></div>
<div class="dashed-lines"></div>
<div class="box"></div>
</div>

关于html - css如何在中心圆旁边创建2条水平线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68097111/

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