gpt4 book ai didi

html - 如何创建一 strip 点的水平线

转载 作者:太空宇宙 更新时间:2023-11-04 06:14:27 24 4
gpt4 key购买 nike

我正在做一个学校元素,我必须创建一条水平线,上面有一些点。

我不能将 css 用作单独的文件。 css 需要在 HTML 的标签内。

例如:

我已经创建了水平线,但无法在其上创建点。 enter image description here

最佳答案

这是我的解决方案:

.wraper {
padding: 50px;
text-align: center;
font-family: sans-serif;
width: 500px;
margin: 10px auto;
}

h1 {
margin: 50px auto;
}

.container {
border-top: 2px solid #000;
display: flex;
list-style: none;
padding: 0;
justify-content: space-between;
align-items: stretch;
align-content: stretch;
}

.link {
position: relative;
margin-top: 10px;
width: 100%;
}

.link a {
font-weight: bold;
text-decoration: none;
color: black;
text-transform: uppercase;
font-size: 15px;
}

.link:first-child {
margin-left: -55px;
}

.link:last-child {
margin-right: -55px;
}

.link::after {
content: "";
width: 10px;
height: 10px;
background: #fff;
position: absolute;
border-radius: 10px;
top: -18px;
left: 50%;
transform: translatex(-50%);
border: 2px solid black;
}

.active::after,
.link:hover::after {
background: black;
}

p.lead {
font-weight: 600;
margin: 50px auto;
line-height: 1.5;
}
<div class="wraper">
<h1>How We Work</h1>

<ul class="container">
<li class="link"><a href="">Identify</a></li>
<li class="link"><a href="">Form</a></li>
<li class="link active"><a href="">Develop</a></li>
<li class="link"><a href="">Launch</a></li>
<li class="link"><a href="">Grow</a></li>
</ul>

<p class="lead">A streamlined team of co-founders is brought together to create and lead the company, empowering a new generation of entrepreneurs.</p>
</div>

希望你需要它:)

关于html - 如何创建一 strip 点的水平线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56118780/

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