Exploring Creative CSS Hover Effects for Inline Links

Sdílet
Vložit
  • čas přidán 9. 09. 2024

Komentáře • 10

  • @MosKou2KH1
    @MosKou2KH1 Před 2 lety

    This piece of content is so valuable, thank you so much for this!

  • @mrfairycake4333
    @mrfairycake4333 Před 8 měsíci

    very nice

  • @junodevergenes
    @junodevergenes Před rokem

    thank you so much

  • @BharatPatel-ny5nh
    @BharatPatel-ny5nh Před 3 lety

    Yeah great. I'm learning CSS

  • @TheFarhanamani
    @TheFarhanamani Před rokem

    Thank you its not working in elementor... hot to fix that ?

  • @codedesign2412
    @codedesign2412 Před 2 lety

    Hi, how did you get the pseudo icon?

  • @digwillhachi
    @digwillhachi Před 3 lety

    This is great as I am currently doing something like this for a wordpress site I am building. I want all the inline links in the paragraphs to have a hover effect. The only issue im having is targeting the link and not other links such as in buttons etc. Seems like using :not() is the way to go. Any thoughts?

    • @envatotuts
      @envatotuts  Před 3 lety

      You could go as simple as targeting all anchors within paragraphs? p a {}
      Or if you’re trying to target external links specifically, you could go for this option (credit to David Walsh) davidwalsh.name/external-links-css

    • @digwillhachi
      @digwillhachi Před 3 lety

      @@envatotuts thanks for the reply. Yes I did indeed go with p a {}. No idea why that didnt enter my brain before lol.