html – 如何用css绘制两个圆圈之间的水平线?

前端之家收集整理的这篇文章主要介绍了html – 如何用css绘制两个圆圈之间的水平线?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在css中的2个圆圈之间画一条水平线?

它必须在其中间,如屏幕截图所示.

示例:

我画了2个圈子,但不知道如何连接它们.

#status-buttons a {
  color: black;
  display: inline-block;
  font-size: 17px;
  font-weight: normal;
  margin-right: 0;
  text-align: center;
  text-transform: uppercase;
  min-width: 150px;
  text-decoration: none;
}
#status-buttons a:hover {
  text-decoration: none;
}
#status-buttons a.active span {
  color: white;
  background: #ACCF5B;
  Box-shadow: rgba(0,0.792157) 3px 3px 3px 0;
}
#status-buttons span {
  color: white;
  background: #22bacb;
  display: block;
  height: 45px;
  margin: 0 auto 10px;
  padding-top: 20px;
  width: 60px;
  border-radius: 50%;
  Box-shadow: rgba(0,0.792157) 3px 3px 3px 0;
}
<div id="status-buttons" class="text-center">
  <a href="#/form/regalo" class="active"><span>1</span> Step 1</a>
  <a href="#/form/tusdatos"><span>2</span> Step 2</a>
</div>

demo on JSFiddle

解决方法

您可以使用伪元素来插入绝对定位的边框:
#status-buttons {
  position: relative;          /* 1 */
  display: inline-block;       /* 2 */
}
#status-buttons::after {       /* 3 */
  content: "";
  position: absolute;
  width: 50%;
  z-index: -1;                 /* 4 */
  top: 35%;
  left: 25%;
  border: 3px solid #ACCF5B;
}
#status-buttons a {
  color: black;
  display: inline-block;
  font-size: 17px;
  font-weight: normal;
  margin-right: 0;
  text-align: center;
  text-transform: uppercase;
  min-width: 150px;
  text-decoration: none;
}
#status-buttons a:hover {
  text-decoration: none;
}
#status-buttons a.active span {
  color: white;
  background: #ACCF5B;
  Box-shadow: rgba(0,0.792157) 3px 3px 3px 0;
}
<div id="status-buttons" class="text-center">
  <a href="#/form/regalo" class="active"><span>1</span> Step 1</a>
  <a href="#/form/tusdatos"><span>2</span> Step 2</a>
</div>

笔记:

> Establish nearest positioned ancestor for absolute positioning.>使容器仅消耗必要的宽度.>插入伪元素>确保任何水平线重叠不会出现在圆圈上方

原文链接:https://www.f2er.com/html/230727.html

猜你在找的HTML相关文章