input{display:none;} 이렇게 css선언하게 되면 모든 input 태그는 비노출이된다
text,password,checkbox,radio등등 모두 비노출되는 식이다
그러나 input=text만 별도로 적용하고자 하는경우가 있는데 이때 사용하는 방법이다
<style>
input {
expression(this.type == "text" ? "none" : font-size:13px)
}
</style>
expression를 통해서 this.type == "text"구분하여 별도록 스타일을 지정할수 있다
<style>
input {
expression(this.type == "text" ? "none" : font-size:13px)
}
</style>