Button Animation CSS

PHOTO EMBED

Fri Oct 07 2022 12:43:11 GMT+0000 (Coordinated Universal Time)

Saved by @jaysoni123 #css

   .btn:before { content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s ease;
    background: white;
    z-index: -1;}
content_copyCOPY