웹스터디/xhtmlcss
사이트 내 모든 type 스타일 지정하기
Anna 안나
2008. 11. 8. 23:45
간단합니다.
그냥 클래스이름을 특정 클래스이름으로 짓지말고
. 도 # 도 붙이지 말고 깔끔하게 input 을 쓰시면 됩니다.
뒤에는 똑같이 스타일 지정하시고요.
예를들자면 이렇게 되죠.
(아래는 CSS 파일에서의 기준입니다.)
/* Input Style Definition */
.inputTypeText {}
.inputTypeText:hover,
.inputTypeText:focus {}
.inputTypeTextArea {background:url(../images/form-field-bg.gif);}
맨끝에는 textarea 도 적용해보았습니다.^^
그냥 클래스이름을 특정 클래스이름으로 짓지말고
. 도 # 도 붙이지 말고 깔끔하게 input 을 쓰시면 됩니다.
뒤에는 똑같이 스타일 지정하시고요.
예를들자면 이렇게 되죠.
(아래는 CSS 파일에서의 기준입니다.)
/* Input Style Definition */
.inputTypeText {}
.inputTypeText:hover,
.inputTypeText:focus {}
.inputTypeTextArea {background:url(../images/form-field-bg.gif);}
맨끝에는 textarea 도 적용해보았습니다.^^