기본적인 질문입니다.
본문
등록일을 세로두칸이 아닌 가로 두칸이랑 회색부분 중 흰색부분이 없게 하고싶어요
<input type="hidden" name="bo_table" id="bo_table" class="bo_table" value="<?php echo $bo_table;?>" /> <!-- 삭제하지마세요 -->
<div id="popup_msg"></div>
<div id="fm_search2">
<form name="fmSearch" id="fmSearch">
<table>
<colgroup>
<col width="7%" />
<col width="18%" />
<col width="7%" />
<col width="18%" />
<col width="7%" />
<col width="7%" />
<col width="7%" />
<col width="18%" />
</colgroup>
<tr>
<th>Search</th>
<td colspan="5">
<select name="sfl" id="sfl" class="sfl">
<?php echo option_str($sfl_t,$sfl_v,$sfl); ?>
</select>
<input type="text" name="stx" id="stx" class="stx" value="<?php echo $stx; ?>" size="20" />
<button type="button" id="btn_submit" class="btn_submit">search</button>
<button type='button' id='reset'>Reset</button>
<?php if ($write_href) { ?>
<button type="button" class="wri" onclick="location.href='<?php echo $write_href ?>';">New</button>
<?php } ?>
</td>
<tr>
<th>교육명</th>
<td><input type="text" name="w9" id="w9" value="<?php echo $w9; ?>" /></td>
<th>등록일</th>
<td>
<input type="text" name="fd" id="fd" class="width80" value="<?php echo $fd; ?>" /> ~
<input type="text" name="td" id="td" class="width80" value="<?php echo $td; ?>" />
</tr>
<tr>
<th>Location</th>
<td colspan="3">
<!-- <select name="w1" id="w1"><?php echo option_str("==선택==".$wr1_t,$wr1_k,$w1); ?></select> -->
<?php
$wr1_t = substr($wr1_t,1);
$wr1_k = substr($wr1_k,1);
echo checkbox($wr1_t,$wr1_k,$w1,'w1');
?>
<th>Condition</th>
<td><select name="w3" id="w3"><?php echo option_str("==Select==".$wr3_t,$wr3_k,$w3); ?></select></td>
</table>
</form>
</div>
답변 2
등록일 옆에 이렇게 한번 해보세요.
<td colspan="3" >
<input type="text" name="fd" id="fd" class="width80" value="<?php echo $fd; ?>" /> ~
<input type="text" name="td" id="td" class="width80" value="<?php echo $td; ?>" />
</td> <---- 이 닫는 td 안보이네요.
<input size="10" 이렇게 사이즈를 작게 작아 보세요.
하지만
css까지 봐야 할 수도 있겠습니다.
해당 페이지 url을 공개해 보세요.
답변을 작성하시기 전에 로그인 해주세요.