본문 바로가기
CSS

버튼_테두리+hover+밑줄없애기

by 율✌️ 2022. 5. 19.

▶텍스트 가운데로 / 밑줄 없애기 / 테두리만들기(모서리 동그랗게)

 

결과

.btn {
    width: 300px;
    height: 40px;
    border: 2px solid #e8344e;

    text-align: center;
    line-height: 40px;

    text-decoration: none;
    color:#e8344e;

    font-weight: bold;
    
    border-radius: 150px;
}

▶Hover

.btn:hover {
    color: white;
    background-color: #e8344e;
}

'CSS' 카테고리의 다른 글

글자/박스에 그림자 넣기  (0) 2022.05.26
두개의 div 한줄에 넣기  (0) 2022.05.26
모바일 CSS 사용코드  (0) 2022.05.19
div 태그로 img넣기_ background-image  (0) 2022.05.19
div 구조잡기_가운데 정렬  (0) 2022.05.19