我可以使用表格和背景图片创建此效果,但是我真的希望能够使用CSS.可能吗?
试试这个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;
}
Run Code Online (Sandbox Code Playgroud)