Programming/CSS
[CSS] input, button 테두리 없애기
aldrn29
2022. 5. 26. 02:30
border에 0이나 none을 주게 되면 테두리를 없앨 수 있다.
728x90
전체 코드
input,
button {
border: none;
}
결과 화면
728x90
728x90