-2
A
回答
2
大概的東西沿着這些線路,雖然這只是一個粗略的答案,將需要更多的CSS樣式它像上面:
HTML:
<div class="container">
<div class="line"></div>
<ul>
<li>
</li>
</ul>
</div>
CSS:
.container {
background: grey;
position: relative;
}
.line {
position: absolute;
width: 100%;
z-index: 1;
height: 1px;
top: 50%;
background: white;
}
ul {
position: relative;
z-index: 2;
color: white;
list-style: none;
text-align: center;
}
li {
display: inline-block;
background: red;
width: 50px;
height: 50px;
border-radius: 50%;
margin: 0 20px;
}
這是一個小提琴 - http://jsfiddle.net/d7yd7L5d/
0
您可以使用:before
或:after
選擇
HTML
<div id="timeline">
<ul>
<li>
Your Circle Code
</li>
</ul>
</div>
CSS
#timeline li::before {
background: #fff;
content: " ";
height: 1px;
left: 100%;
position: absolute;
top: 50%;
width: 100%;
}
相關問題
- 1. 如何使水平時間軸滑塊向右
- 2. jQuery時間軸滑塊
- 3. CSS中的水平時間軸
- 4. 響應水平時間軸與垂直時間軸與引導
- 5. 水平時間軸 - 標籤重疊
- 6. Google圖表時間軸水平滾動
- 7. Google地圖時間軸滑塊
- 8. 作爲時間軸的jQuery滑塊
- 9. div中間的水平線
- 10. 水平ImageView滑塊
- 11. 將antdesign垂直時間線修改爲水平時間線
- 12. Plotly時間序列 - 水平線繪製
- 13. 滑塊手柄走出水平滑塊
- 14. 中間軸線
- 15. 水平連續滑塊
- 16. 水平滑塊a gmail
- 17. 水平滑塊菜單
- 18. Rgd:雙水平滑塊
- 19. 頁面中間的水平線
- 20. 水平線在中間的CSS標題
- 21. 水平時間表改造
- 22. android中的水平滑塊吧
- 23. 兩行滑塊與水平線和垂直線?
- 24. matplotlib:刪除軸之間的水平間隙?
- 25. JQuery UI滑塊的時間
- 26. 設計時間滑塊
- 27. 從滑塊顯示時間
- 28. 使用日期時間x軸平滑滾動圖表
- 29. 橫跨時間軸的平均滑動窗口
- 30. 將數據加載到水平時間軸
請告訴我們你已經嘗試了什麼,包括HTML和CSS。 – Ruddy