개발자의 끄적끄적

[html/css] css input textarea outline 숨기는 방법 본문

개발/html & css

[html/css] css input textarea outline 숨기는 방법

효벨 2021. 11. 30. 01:00
728x90
반응형

[html/css] css input textarea outline 숨기는 방법

 

 

크롬 브라우저에서

 

input 이나 textarea 태그를 사용하다 보면

 

노란색 테두리가 나타나는 경우가 있습니다.

 

그게 불편하다면 없앨 수 있는데요.

 

바로 아래 css 를 추가하시면

 

해당 태두리를 없앨 수 있습니다!

 

input { outline-style: none; }
textarea { outline-style: none; }

 

참고들 하세요!

반응형
Comments