정말 창피하지만.. html 관련 질문좀.. 할게요.. ^^;;; > 그누3질답

그누3질답

정말 창피하지만.. html 관련 질문좀.. 할게요.. ^^;;; 정보

그누보드 정말 창피하지만.. html 관련 질문좀.. 할게요.. ^^;;;

본문

음.. 계속 해봤는데요..
이를테면,
<table border=0 cellpadding=0 cellspacing=0 width=100%>
<tr><td width='50'></td>
      <td width=''><textarea style="width:100%" rows=10></textarea></td>
      <td width='50'></td>
</tr>
</table>
이런 형식으로 텍스트에어리어를 만들었을 때, 낮은 버전의 브라우져에서는
텍스트 입력부분이 보이지 않는 경우가 있는 것 같습니다.
윈도우 98에서 안보이는 경우가 많이 있습니다......
해결하는 방법이 없을까요?
  • 복사

댓글 전체

저도 익스5.0인데 텍스트에리어 표시안됩니다. 입력이 불가능하다는 거지요
하지만 편법으로 이렇게 바꾸면 어떨까요?
<table border=1 bordercolor=white cellpadding=0 cellspacing=0 width=100%>
<tr><td width='50'>&nbsp;</td>
    <td><textarea style="width:100%" rows=10></textarea></td>
    <td width='50'>&nbsp;</td>
</tr>
</table>
이렇게 하니 제경우는 되는군요....
음.. ' 를 사용해도 안되는 브라우저에서는 안되네요.. ㅡ.ㅡ;;
어렵네요.. 너무. ㅠ.ㅠ cols를 사용하는 방법밖엔 없는 듯 합니다.. 어렵네요.. ㅠ.ㅠ
<table border=0 cellpadding=0 cellspacing=0 width=100%>
<tr><td width='50'></td>
    <td><textarea style="width:100%" rows=10></textarea></td>
    <td width='50'></td>
</tr>
</table>
윈도우98이라면 익스플로러4.0 이상일텐데요. textarea가 먹히지 않는다. 이상하군요.
다음처럼 한번해 보시죠. 그리고 textarea의 내용을 전송하거나 처리해야 할 경우를 생각해서 name속성도 넣어 주시죠.

<textarea name="contents"  rows="10" cols="50">테스트임돠!!!</textarea>

좀더 멋지게 다듬으면 물론 브라우져가 스타일시트를 인식해야겠죠. *^^*
<textarea name="contents" rows="10" cols="50" onFocus="this.style.background='#EFEFEF'" onBlur="this.style.background=' '" style="border:1px solid #6F6F6F">요것도 테스트임돠!!!</textarea>
© SIRSOFT
현재 페이지 제일 처음으로