Rumah > Artikel > hujung hadapan web > css如何设置文字中间的小竖线?
主要css属性是border-right
border-right:1px solid gray;
padding-right:10px;
padding-left:10px;
<div data-bind="foreach:RequestListAll"> <a class="PositionName" style="display: block;color:gray; float: left; font-family: 微软雅黑; font-size: 14px;border-right:1px solid gray;padding-right:10px;padding-left:10px;" data-bind="text:PositionName,click: $root.ViewDetail"></a> </div>
用这个样式一般文字和斜杠会一堆一出现,导致后面就回也出现一条竖线,看起来比较丑,用jQuery把最后一条也去掉
$(function () { $(".PositionName").last().css("border-right", "none");; })
Atas ialah kandungan terperinci css如何设置文字中间的小竖线?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!