如何在CSS中创建垂直删除线?

时间:2012-09-06 11:21:11

标签: html css

我可以使用表格和背景图片创建此效果,但我真的希望能够使用CSS。可能吗?

DEMO http://jsfiddle.net/2ARfR/

1 个答案:

答案 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;

}