我正在嘗試創建一些線條和圓圈,它們可以相互連接。CSS圓圈和線條 - 連接器
這裏是my attempt但我只能連接第一個圓到第一行,但我想有幾個水平顯示。從小提琴
代碼:
<!DOCTYPE html>
<head>
<style>
.flow {
height: 5em;
left: -0.3em;
}
.flow div:first-child {
left: 0em;
}
.circle {
border-radius: 50%;
display: inline-block;
background: green;
width: 2.5em;
height: 2.5em;
box-shadow: 0px 0px 10px 4px rgba(50, 160, 45, 0.75);
-moz-box-shadow: 0px 0px 10px 4px rgba(50, 160, 45, 0.75);
-webkit-box-shadow: 0px 0px 10px 4px rgba(50, 160, 45, 0.75);
position: relative;
left:inherit;
}
.line {
display: inline-block;
background: green;
height: 0.5em;
width: 300px;
position: relative;
margin-bottom: 1.0em;
box-shadow: 0px 0px 10px 4px rgba(50, 160, 45, 0.75);
-moz-box-shadow: 0px 0px 10px 4px rgba(50, 160, 45, 0.75);
-webkit-box-shadow: 0px 0px 10px 4px rgba(50, 160, 45, 0.75);
left:inherit;
}
</style>
</head>
<body>
<div class="flow">
<div id="circle1" class="circle"></div>
<div class="line"> </div>
<div id="circle1" class="circle"></div>
</div>
</body>
你也可以去與somerhing這樣的:http://jsfiddle.net/dq7pf/11/ –
@NicoO尼斯,但我需要有長度屬性的行,並從圓分開。 – user2779312
我不能編輯下一個小時的編輯。如果到那時爲止還沒有答案,請回到這裏 –