我正在做一个学校项目,必须创建一条水平线,上面有一些点。
我不能将CSS用作单独的文件。 css必须位于HTML的标记内。
例如:
我已经创建了水平线,但是无法在其上创建点。
答案 0 :(得分:1)
您可以添加以下内容:
<div style="margin:50px;width:450px;height:25px;overflow:hidden;">
<div style="width:550px;height:2px;background:black;position:relative;top:5px;">
<div style="float:left;width:10px;height:10px;background:black;border-radius:50%;position:relative;top:-4px;margin-right:100px;"></div>
<div style="float:left;width:10px;height:10px;background:black;border-radius:50%;position:relative;top:-4px;margin-right:100px;"></div>
<div style="float:left;width:10px;height:10px;background:black;border-radius:50%;position:relative;top:-4px;margin-right:100px;"></div>
<div style="float:left;width:10px;height:10px;background:black;border-radius:50%;position:relative;top:-4px;margin-right:100px;"></div>
<div style="float:left;width:10px;height:10px;background:black;border-radius:50%;position:relative;top:-4px;margin-right:100px;"></div>
</div>
</div>
<div style="width:550px;height:2px;position:relative;left:45px;top:-55px;">
<div style="float:left;width:10px;height:10px;position:relative;top:-4px;margin-right:100px;">text</div>
<div style="float:left;width:10px;height:10px;position:relative;top:-4px;margin-right:100px;">some other text</div>
<div style="float:left;width:10px;height:10px;position:relative;top:-4px;margin-right:100px;">some more text</div>
<div style="float:left;width:10px;height:10px;position:relative;top:-4px;margin-right:100px;">guess what! text!</div>
<div style="float:left;width:10px;height:10px;position:relative;top:-4px;margin-right:100px;">text again</div>
</div>
点在其右边具有空白以形成间距,并且它们相对于其位置以确保它们在直线上。添加了一个包装器,以隐藏黑线右侧的多余部分,这是由于最后一个点的右边距所需要的(否则该点将进入下一行)。
您还可以使用上面html代码的最后一部分添加文本。
答案 1 :(得分:0)
这是我的解决方案:
.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>
希望您需要它:)