如果没有某种图像,很难说出你在追求什么,但你可以试试这个:
/* Target the pseudo-element :before on any label that follows another label */
label + label:before {
content: "OR";
color: red;
padding: 0 10px;
background-size: 1px 100%;
background-repeat: no-repeat;
background-position: center center;
background-image: -webkit-linear-gradient(0, #000, #000);
background-image: -moz-linear-gradient(0, #000, #000);
background-image: -ms-linear-gradient(0, #000, #000);
background-image: -o-linear-gradient(0, #000, #000);
background-image: linear-gradient(0, #000, #000);
}
小提琴:http: //jsfiddle.net/5WrJu/