我有以下幾點:http://jsfiddle.net/DTyGn/1/繼承父母的身高指定
的問題是,跑下來的div中間的藍線只應在父(.box
)的高度,但那是不可能的,因爲.box
沒有指定的高度,因爲高度可以變化。
我該如何解決這個問題?
HTML:
<div class="box">
Sample text.
</div>
<div class="box">
Some more text.<br />
Different height.
</div>
CSS:
.box {
padding: 50px 0;
text-align: center;
border: 1px solid black;
margin-bottom: 20px;
}
.box:after {
content: "";
height: 100%;
width: 5px;
background: blue;
display: block;
position: absolute;
top: 0;
left: 50%;
margin-left: -2.5px;
z-index: -1;
}
我覺得像一個白癡缺少這樣一個簡單的解決方案。謝謝。 :P – Walter