css focus 기능

2020/CSS 2020. 2. 18. 18:45
반응형

input 같은 요소를 클릭해 선택해서 입력하는 동안이나 선택해 있는 동안의 스타일 지정을 합니다.

 

예제 1

<style>
input:focus {background-color: yellow;}
</style>

<form>
<input type="text" name="focus">
<input type="submit" value="Submit">
</form> 

input창을 클릭하면 노란색으로 바뀝니다.

결과 확인은

https://codepen.io/sinbi/pen/WNeYdoV

 

WNeYdoV

...

codepen.io

예제 2

<style>
input {background-color:gray;}
input:hover {background-color:red;}
input:active {color:white;background-color:blue;}
input:focus {color:green;background-color:yellow;}
</style>
 
<input  type="text"/>

https://codepen.io/sinbi/pen/gOYQoWZ

반응형
블로그 이미지

꽃꽂이하는개발자

,