Seenthis
•
 
Identifiants personnels
  • [mot de passe oublié ?]

  • https://css-tricks.com
  • /almanac
  • /functions

C | CSS-Tricks

/c

  • ►/contrast
  • @b_b
    b_b @b_b PUBLIC DOMAIN 19/05/2026
    1
    @cy_altern
    1

    contrast() | CSS-Tricks
    ▻https://css-tricks.com/almanac/functions/c/contrast

    Making product card images pop on hover

    Another useful application for contrast() is to highlight an image in a user’s interaction. For example, in a row of image cards, we could increase the image’s contrast and also scale it on hover

    .card img {
      transition:
        filter 0.4s ease,
        transform 0.4s ease;
    }
    
    .card:hover img {
      filter: contrast(125%);
      transform: scale(1.05);
    }

    #css #contrast #effet #hover

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire