불여우의 호환성 때문에... 정보
불여우의 호환성 때문에...본문
불여우에서 쪽지보내기를 누르면, 글쓰기 밑에 파일 찾아보기란이 두개가 나오면서,
찾아보기 버튼은 오른쪽 옆으로 밀려납니다. IE6에서는 이상없습니다. IE 7.0에서도 잘 됩니다.
아래코드를 불여우에서 실행하면, 이상하게 span이 hidden되지 않습니다. 왜 그런가요??
<td width="75" align="right" >
<span style='overflow:hidden; width:73; height:22; background-image:url(<?=$member_skin_path?>/img/file.gif);'>
<input type=file class=ed name='memo_file' style='width:0;height:20;filter:alpha(opacity=0);selector-dummy : expression(this.hideFocus=true);cursor:pointer;' onchange='document.all.memo_file_show.value=this.value'>
</span>
</td>
찾아보기 버튼은 오른쪽 옆으로 밀려납니다. IE6에서는 이상없습니다. IE 7.0에서도 잘 됩니다.
아래코드를 불여우에서 실행하면, 이상하게 span이 hidden되지 않습니다. 왜 그런가요??
<td width="75" align="right" >
<span style='overflow:hidden; width:73; height:22; background-image:url(<?=$member_skin_path?>/img/file.gif);'>
<input type=file class=ed name='memo_file' style='width:0;height:20;filter:alpha(opacity=0);selector-dummy : expression(this.hideFocus=true);cursor:pointer;' onchange='document.all.memo_file_show.value=this.value'>
</span>
</td>
댓글 전체

px 를 넣어보세요. width:73px; height:22px;
px를 넣어도 박스는 그대로에요. 앞의 box가 hidden이 되어야 하는데 ㅠ..ㅠ

박스를 감추시려면 display:none; 을 이용해보세용..
박스가 ie에서는 안나와요. 불여우에서만 나오는데요...
알려주신거처럼 display:none; 을 쓰면 span 안에 있는
input text 역시 안보이게 되기 때문에... ㅠ..ㅠ
알려주신거처럼 display:none; 을 쓰면 span 안에 있는
input text 역시 안보이게 되기 때문에... ㅠ..ㅠ
중요한게... width가 아니라 style='overflow:hidden 이 안먹히는 겁니다 ㅠ..ㅠ

div 로 하시고 배추님께서 말하신 디스플레이로 해보세요.
테스트를 다시 해보니까... input type의 문제네요 ㅠ..ㅠ
<input type=file class=ed name='memo_file' style='width:0;height:20;filter:alpha(opacity=0);selector-dummy : expression(this.hideFocus=true);cursor:pointer;' onchange='document.all.memo_file_show.value=this.value'>
<input type=file class=ed name='memo_file' style='width:0;height:20;filter:alpha(opacity=0);selector-dummy : expression(this.hideFocus=true);cursor:pointer;' onchange='document.all.memo_file_show.value=this.value'>
해결하신건가요?