Hello,
I try to make a translate effect on my project https://codepen.io/flowerspower/pen/oNgGPLB but it does not work, you can see in my CSS line N°170
Thank’s for the help
Hello,
I try to make a translate effect on my project https://codepen.io/flowerspower/pen/oNgGPLB but it does not work, you can see in my CSS line N°170
Thank’s for the help
Can you explain what you are trying to accomplish? What are you trying to translate? What happens instead of what you want to happen?
Thank’s to answer, on hover i would like to move down the logo and text Github
I believe the problem is with the default value for the display
property, which for anchor link elements is inline
.
If you look on the MDN docs for the transform property, you’ll see a warning describing how Only transformable elements can be transform
ed, and this excludes inline elements.
If you change the value to block
you should see the desired translation.
#profile-link{
display: block;
}
Thank you very much it works !!