我可以使用表格和背景图片创建此效果,但我真的希望能够使用CSS。可能吗?
答案 0 :(得分:5)
试试这个jsbin:http://jsbin.com/arisuy/5/edit
相关CSS
p {
width: 50px;
text-align: center;
position : relative;
}
p:before {
position: absolute;
content : "";
left : 50%;
top : 0;
height: 100%;
width : 0;
border-right: 1px #666 solid;
}