创建由线连接的CSS3圆

创建由线连接的CSS3圆,第1张

创建由线连接的CSS3圆

您可以使用伪元素和相邻同级选择器(~)来实现此效果,而无需额外的标记

li {  width: 2em;  height: 2em;  text-align: center;  line-height: 2em;  border-radius: 1em;  background: dodgerblue;  margin: 0 1em;  display: inline-block;  color: white;  position: relative;}li::before{  content: '';  position: absolute;  top: .9em;  left: -4em;  width: 4em;  height: .2em;  background: dodgerblue;  z-index: -1;}li:first-child::before {  display: none;}.active {  background: dodgerblue;}.active ~ li {  background: lightblue;}.active ~ li::before {  background: lightblue;}<ul>  <li>1</li>  <li>2</li>  <li>3</li>  <li >4</li>  <li>5</li>  <li>6</li>  <li>7</li></ul>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621291.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存