[스타일시스] Input 박스에 포커스 되었을때 스타일 변경
페이지 정보
작성자 MintState 댓글 0건 조회 13,252회 작성일 08-11-17 15:22본문
[스타일시스] Input 박스에 포커스 되었을때 스타일 변경
<style>
/* 포커스 했을때 input 스타일 변경 */
.input3 {
color: #333333;
background-color: #FFFFFF;
border-bottom-width: 1px;
border: 1px silver solid;
height: 18;
font-size:9pt;
}
.text_focus{
background-color: #F3F3F3;
border: 1px solid #3485D7;
font-weight:bold;
}
.text_blur{
background-color: white;
border: 1px solid silver;
font-weight:none;
}
</style>
<input type=text name=word class=input3 style="width:175px;height:18px" onfocus="this.className='text_focus'" onblur="this.className='text_blur'">|
|
댓글목록
등록된 댓글이 없습니다.





[스타일시스] Input 박스에 포커스 되었을때 스타일 변경