본문 바로가기

FrontEnd/CSS

Button - Hover Event

 

 

 

코드

.btn {
    position: relative;
    background: none;
    border: solid 1px #121212;

    transition: color 200ms;
}

.btn:is(:hover,:focus) {
    color: white;
}

.btn::after {
    position: absolute;
    content: '';
    inset: 0;
    z-index: -1;

    background-color: #121212;

    transform-origin: left;
    transform: scaleX(0);
    transition: transform 200ms;
}

.btn:is(:hover, :focus)::after {
    transform: scale(1);
}

 

'FrontEnd > CSS' 카테고리의 다른 글

Media Query 설정  (0) 2023.01.26
Search Input - Expanding Event  (0) 2022.05.10