작성일 : 15-07-06 20:13
|
[CSS] input 에 조건문으로 스타일 처리
|
|
|
글쓴이 :
조형래
 조회 : 3,274
|
<style type='text/css'>
INPUT {border:expression((this.type=='text')?'1px solid #7f9db9':'' );}
</style>
<input type="text"><br>
<input type="checkbox"><br>
<input type="radio"><br>
<input type="file"><br>
|
|