본문 바로가기

Programming/CSS

[CSS] input, button 테두리 없애기

border에 0이나 none을 주게 되면 테두리를 없앨 수 있다.

 

728x90

 


 

전체 코드

input,
button {
    border: none;
}

 

결과 화면

 

728x90
728x90