본문 바로가기

css버튼 .click-me-button { display: inline-block; background-color: #fc4141; /* 배경색 */ border: none; color: white !important; /* 글자색 */ text-align: center; font-size: 16px; padding: 15px 20px; /* 버튼 크기 */ border-radius: 10px; transition-duration: 0.4s; cursor: pointer; font-weight: bold; text-decoration: none; /* 링크 밑줄 제거 */ } .click-me-button:hover { background-color: #FFDD4A; /* 마우스 호버시 배경색 */ color: #101E4A !important; /* 마우스 호버시 텍스트 색상 변경 */ font-weight: bold; }