컴공생의 다이어리

[CSS] 테두리(border) 없애기 본문

Development/Network & Web

[CSS] 테두리(border) 없애기

컴공 K 2021. 11. 4. 00:01

CSS 테두리(border) 없애기

input이나 button 태그의 경우 border:none;을 사용하면 테두리를 없앨 수 있다.

input,
button{
	border:none;
}

 

 

 

https://solbel.tistory.com/1722

 

[html/css] html input box 테두리 없애는 방법

[html/css] html input box 테두리 없애는 방법 html 에서 input box 의 테두리를 없애고 싶은 경우가 있습니다. 그럴때는 input 태그에 아래 style 옵션을 추가해주면 됩니다. style="border:0 solid black..

solbel.tistory.com

 

728x90
Comments