본문 바로가기

카테고리 없음

버튼 누를 때 굵어지는 코드 button:hover

<기존 버튼>

.mytitle > button {
            width:250px;
            height: 50px;  

            background-color: transparent;

            border: 1px solid white;
            color: white;

            border-radius: 50px;

            margin-top: 20px;

<굵어진 hover 일어난 버튼>

.mytitle > button:hover {
            border: 2px solid white;
        }