묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
form에 대해서 질문..;;
2004.08.22 12:43
저기 폼을 쓰거든요
태그에서
예를 들어
<td width="60" height="20">
<form name=form1><p align="center"><input type="checkbox" name="formcheckbox1"></p></form>
</td>
이렇게 썼어요.
그럼 폼 크기가 커서 높이 20픽셀에 들어가지 않음
20픽셀이 늘어나서 한 40픽셀정도가 되버리나?
암튼 그럼
폼 크기를 높이 20픽셀로 마추는 방법좀 알려주세요..
태그에서
예를 들어
<td width="60" height="20">
<form name=form1><p align="center"><input type="checkbox" name="formcheckbox1"></p></form>
</td>
이렇게 썼어요.
그럼 폼 크기가 커서 높이 20픽셀에 들어가지 않음
20픽셀이 늘어나서 한 40픽셀정도가 되버리나?
암튼 그럼
폼 크기를 높이 20픽셀로 마추는 방법좀 알려주세요..
댓글 3
-
Lepas
2004.08.23 15:32
-
히스
2004.08.24 08:48
안돼던데..
나모에서 하거든요?
나모에서하는데 안돼요.;
먼가 다른문제가 있는건가? -
특급잠수부
2004.08.27 10:04
form 태그의 속성으로 인해서 그렇습니다.
<style>
form { margin:0px }
</style>
을 추가하시고 쓰시기 바랍니다.
<form name=form1><p align="center"><input type="checkbox" name="formcheckbox1" style="width:60;height:20"></p></form>
</td>
input 태그 뒤에 style="width:60;height:20" 를 붙이세요.