我有兩列設置的列表項目,底部空白分隔了每個「行」的2個項目。偶數列表項上的連續左邊界/分隔符?
可以很容易地設置左邊框上的每個甚至列表項...
但我不知道是否有可能建立邊界,使得它繼續在連續的垂直線與它的高度高達第二列。
此外,我不希望在列表項上使用底部填充,因爲(除其他外)分隔符會突出顯示在列表項下方。
這是迄今爲止:
(這是好事)
(這不是我想要的,因爲項目「削減」銀線的底部邊緣
標記:
<ul>
<li></li><li></li><li></li>
</ul>
CSS:
ul
{
list-style: none;
width: 220px;
background: wheat;
}
li
{
display:inline-block;
background: pink;
width: 100px;
height: 100px;
margin-bottom: 25px;
position: relative;
}
li:nth-child(even)
{
margin-left: 18px;
}
li:nth-child(even):before
{
content: '';
position: absolute;
left: -11px;
top:0;
width: 4px;
height: 100%;
background: silver;
}
+1是的,這是一個很好的解決方案! – Danield