개발자의 끄적끄적

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

개발/html & css

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

효벨 2021. 5. 19. 03:00
728x90
반응형

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

 

 

html 에서

 

input box 의

 

테두리를 없애고 싶은 경우가 있습니다.

 

그럴때는

 

input 태그에 아래 style 옵션을 추가해주면 됩니다.

 

style="border:0 solid black"

 

위 옵션을 추가한 예제는 아래와 같습니다.

 

<input type="text" style="border:0 solid black;"> 

 

참고들 하세요!

반응형
Comments