Skip to content
Advertisement

CSS3 Transition on pseudo element (::before) does not work

I am trying to style a border with a pseudo element. I have a div and this div has a top border. I want the border to have a little arrow when I hover over the div. I have been able to achieve this, but What I want is for the little arrow to SLIDE DOWN SLOWLY when I hover over the div. I have tried to add some transitions but the transitions seem not to work on the ::before elements. I’ve looked at all the questions on Stackoverflow asking a similar thing, but none of the solutions seem to be able to solve my problem

Here’s the code.

HTML

JavaScript

and the CSS

JavaScript

Any solution, even a JQUERY or Pure JS solution will be appreciated.

Advertisement

Answer

The problem is that the pseudo-element doesn’t exist when the container isn’t being hovered:

JavaScript

You should move some of these styles to the .flexContainerBox::before styles (where you have the transition styles):

JavaScript

To not animate the centering of the arrow (translate(-50%, ...)), you can add this:

JavaScript

Also, there’s a small typo:

JavaScript

becomes

JavaScript

Result

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement