从悬停中排除伪元素

时间:2016-10-24 12:56:42

标签: css css3 css-selectors

我有这个简单的css代码:

li:not(:first-child):before{
    content:"\2666";
    position: relative;
    left: -15px;
    color:white;
    opacity: 0.3;
    transition: all 0.2s ease-in;
}

我希望在悬停时将underline添加到除:before(伪元素)之外的元素。

像这样简单

li:not(*What to add here?*):hover{
    text-decoration: underline;
}

0 个答案:

没有答案