불여우의 호환성 때문에...
불여우에서 쪽지보내기를 누르면, 글쓰기 밑에 파일 찾아보기란이 두개가 나오면서,
찾아보기 버튼은 오른쪽 옆으로 밀려납니다. 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>
첨부파일
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 8개
알려주신거처럼 display:none; 을 쓰면 span 안에 있는
input text 역시 안보이게 되기 때문에... ㅠ..ㅠ
<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'>