여러가지 시도해봤지만 이 방법이 가장 쉽다.
주의 할 점은 DIV의 시작 좌표는 테이블의 좌측 상단에서 부터 계산해야한다.

<table align="center" width="500" border="1" cellspacing="0" cellpadding="0">
    <tr>
        <td>
            <div style="position: relative;">
                <div style="position:absolute; left: 100px; top: 100px; width:300px; height:300px; background-color:#ccc;">
                    내용
                </div>
            </div>
            <br>
            <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
        </td>
    </tr>
</table>

Posted by 밤치

2009/06/09 11:19 2009/06/09 11:19
,
Response
No Trackback , 2 Comments
RSS :
http://bamchi.com/blog/rss/response/129

적절한 Form을 구현한 HTML코드

<form>
<ul>
    <fieldset>
      <legend>Person info</legend>
      <ul>
        <li>
          <label for="name">Name:</label>
          <input type="text" name="name" id="name" />
        </li>
        <li>
          <label for="age">Age:</label>
          <input type="text" name="age" id="age" />
        </li>
      </ul>
    </fieldset>
      <fieldset>
      <legend>Address info</legend>
      <ul>
        <li>
          <label for="address">Address:</label>
          <input type="text" name="address" id="address" />
        </li>
        <li>
          <label for="zip">Zip:</label>
          <input type="text" name="zip" id="zip" />
        </li>
      </ul>
    </fieldset>
</ul>
</form>


사용자 삽입 이미지

Posted by 밤치

2009/05/18 10:11 2009/05/18 10:11
, , ,
Response
No Trackback , No Comment
RSS :
http://bamchi.com/blog/rss/response/126