-- CSS

크롬에서 홈페이지의 버튼이나 입력박스에 노란색 테두리 제거

어린왕자악꿍 2013. 12. 21. 22:30

크롬 브라우저로 홈페이지를 열어 버튼이나 입력박스를 선택하면 노란색 테두리가 표시된다.




이를 제거하기 위해서는 아래와 같이 작업하면 된다.


button { 
outline:none;
}

input {
outline:none;
}


Property

Description

Values

CSS

outline

Sets all the outline properties in one declaration

outline-color

outline-style

outline-width

inherit

2

outline-color

Sets the color of an outline

color_name

hex_number

rgb_number

invert

inherit

2

outline-style

Sets the style of an outline

none

dotted

dashed

solid

double

groove

ridge

inset

outset

inherit

2

outline-width

Sets the width of an outline

thin

medium

thick

length

inherit

2