// checkbox, radio 타입을 제외하삼~
<style>
INPUT { border: expression( (this.type=='checkbox'||this.type=='radio')?'':'1px solid red' );
</style>
<input type=text>
<input type=button>
<input type=radio>
<input type=checkbox>
또는..
<!--
function apply_inputBorder() {
var textInput = document.getElementsByTagName('INPUT');
for(i = 0; i < textInput.length; i++) {
if(textInput[i].getAttribute('type') == 'text') textInput[i].style.border = '1px solid black';
}
}
window.onload = apply_inputBorder;
-->
<style>
INPUT { border: expression( (this.type=='checkbox'||this.type=='radio')?'':'1px solid red' );
</style>
<input type=text>
<input type=button>
<input type=radio>
<input type=checkbox>
또는..
<!--
function apply_inputBorder() {
var textInput = document.getElementsByTagName('INPUT');
for(i = 0; i < textInput.length; i++) {
if(textInput[i].getAttribute('type') == 'text') textInput[i].style.border = '1px solid black';
}
}
window.onload = apply_inputBorder;
-->
반응형
'인터넷정보' 카테고리의 다른 글
페이지 내에서 링크 자국 안남게 하는 법 (0) | 2007.10.17 |
---|---|
페이지 내에서 링크 자국 안남게 하는 법 (0) | 2007.10.17 |
CSS 레이어 수직중앙정렬 (0) | 2007.10.17 |
CSS 레이어 수직중앙정렬 (0) | 2007.10.17 |
input 타입별로 CSS 처리.. (0) | 2007.10.17 |
MS 자바가상머신(JVM) 제거 삭제 방법 (0) | 2007.10.17 |
MS 자바가상머신(JVM) 제거 삭제 방법 (0) | 2007.10.17 |
CSS 로 DIV 모서리 라운드 처리 (0) | 2007.10.17 |
CSS 로 DIV 모서리 라운드 처리 (0) | 2007.10.17 |
textarea 스크롤바 생성 없이 자동 줄 늘이기 (0) | 2007.10.17 |