私は次のcssを持っています:
.pageMenu .active::after {
content: '';
margin-top: -6px;
display: inline-block;
width: 0px;
height: 0px;
border-top: 14px solid white;
border-left: 14px solid transparent;
border-bottom: 14px solid white;
position: absolute;
right: 0;
}
jQuery を使用して、上下の境界線の幅を変更したいと考えています。この要素にアクセスするには、どのセレクターを使用すればよいですか? 以下を試してみましたが、うまくいかないようです。
$('.pageMenu .active:after').css(
{
'border-top-width': '22px',
'border-left-width': '22px',
'border-right-width': '22px'
}
)