D
D
Daniil Ulyanov2021-05-10 17:48:37
css
Daniil Ulyanov, 2021-05-10 17:48:37

Pseudo-classes don't work :(. What should I do?

Good day to all! No pseudo-classes on the link work. Tell me what needs to be done.

<span class = "slide-links">
      <a href = "https://youtube.com" class = "slide-link__item">Получить консультацию</a>
    </span>


.slide-link__item{
        @include adaptive-font(15, 12.5);

        font-weight: 400;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: black;

        transition: 750ms;

        &:hover{
            color:rgb(255, 218, 26);
            transition: 500ms;
        }
    }

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
EmeraldGuy, 2021-05-11
@xXLareMoonXx

Everything works on JSFiddle. If it doesn't work for you try this:

.slide-link__item{
        font-weight: 400;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: black;

        transition: 750ms;      
    }
    
.slide-link__item:hover{
            color:rgb(255, 218, 26);
            transition: 500ms;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question