DIV vs. TABLE > 기술자료

본문 바로가기

사이트 내 전체검색

DIV vs. TABLE > 기술자료

HTML DIV vs. TABLE

페이지 정보


본문

1. valign은 어디에 있나요?
<td valign="top">  -->  <div style="padding-top: 5px;">


2. 레이아웃을 짜다보니 div 가 너무 많이 중첩되는데요?
보통 내용을 만들때 table을 만들고 그 안에 또 table 을 생성  -->
div 가 아닌 dl , dt 태그를 사용하여 구성


3. 모든 HTML에서 테이블을 사용하지 말자?
테이블을 사용하면 웹표준을 지킬수 없다는 것이 아닙니다.
레이아웃을 구성하려는 목적인 경우는 div 를 활용해서 사용하자는 것이지요,
표(Table)은 원래 취지에 맞도록 사용하는 습관을 키워야 겠습니다.


4. 두개의 레이아웃을 좌우로 배치할때 브라우저를 작게하면 내려가는 현상
아래 예제를 잘 습득하시면 원하는 모습을 자유롭게 만들수 있습니다.


<style type="text/css">
.s1 { background-color:#FF0000; text-align:center; }
.s2-1 { background-color:#999999; text-align:center; }
.s2-2 { background-color:#00FF00; text-align:center; }
.s2-3 { background-color:#0000FF; text-align:center; }
.s2-4 { background-color:#FFFF00; text-align:center; }
.s3 { background-color:#FF00FF; text-align:center; }
.s4 { background-color:#FF0000; text-align:center; }
.s5 { background-color:#660099; text-align:center; }
.s6 { background-color:#336666; text-align:center; }
</style>

예제 1>
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td colspan="2" bgcolor="#FF0000" align="center">1</td>
  </tr>
  <tr>
    <td width="100" bgcolor="#999999" align="center">2-1</td>
    <td width="100" bgcolor="#00FF00" align="center">2-2</td>
   </tr>
 </table>

<div class="s1" style="width:200px;">1</div>
<div class="s2-1" style="float:left; width:100px;">2-1</div>
<div class="s2-2" style="width:100px;">2-2</div>

예제 2>
<table border="0" cellspacing="0" cellpadding="0" width="200">
  <tr>
    <td colspan="4" bgcolor="#FF0000" align="center">1</td>
  </tr>
  <tr>
    <td width="50" bgcolor="#999999" align="center">2-1</td>
    <td width="50" bgcolor="#00FF00" align="center">2-2</td>
    <td width="50" bgcolor="#0000FF" align="center">2-3</td>
    <td width="50" bgcolor="#FFFF00" align="center">2-4</td>
  </tr>
</table>

<div class="s1" style="width:200px;">1</div>
<div class="s2-1" style="float:left; width:50px;">2-1</div>
<div class="s2-2" style="float:left; width:50px;">2-2</div>
<div class="s2-3" style="float:left; width:50px;">2-3</div>
<div class="s2-4" style="float:left; width:50px;">2-4</div>

예제 3>
<table border="0" cellspacing="0" cellpadding="0" width="200">
  <tr>
    <td colspan="4" bgcolor="#FF0000" align="center">1</td>
  </tr>
  <tr>
    <td width="50" bgcolor="#999999" align="center">2-1</td>
    <td width="50" bgcolor="#00FF00" align="center">2-2</td>
    <td width="50" bgcolor="#0000FF" align="center">2-3</td>
    <td width="50" bgcolor="#FFFF00" align="center">2-4</td>
  </tr>
  <tr>
    <td colspan="4" bgcolor="#FF00FF" align="center">3</td>
  </tr>
  <tr>
    <td colspan="4" bgcolor="#FF0000" align="center">4</td>
  </tr>
  <tr>
    <td colspan="4" bgcolor="#660099" align="center">5</td>
  </tr>
  <tr>
    <td colspan="4" bgcolor="#336666" align="center">6</td>
  </tr>
</table>

<div class="s1" style="width:200px;">1</div>
<div class="s2-1" style="float:left; width:50px;">2-1</div>
<div class="s2-2" style="float:left; width:50px;">2-2</div>
<div class="s2-3" style="float:left; width:50px;">2-3</div>
<div class="s2-4" style="float:left; width:50px;">2-4</div>
<div class="s3" style="clear:both; width:200px;">3</div>
<div class="s4" style="width:200px;">4</div>
<div class="s5" style="width:200px;">5</div>
<div class="s6" style=" width:200px;">6</div>


참고사이트
http://ilmol.com/wp/2005/06/09/25/
http://blog.naver.com/PostView.nhn?blogId=multist&logNo=10034299676

댓글목록

등록된 댓글이 없습니다.


Total 200건 8 페이지
  • RSS
기술자료 목록
60
HTML   14078  2009-04-24 09:09 ~ 2009-09-09 00:00  
59
HTML   15129  2009-04-23 20:15  
58
HTML   27023  2009-04-23 00:36  
57
HTML   15281  2009-04-03 20:08  
56
HTML   33211  2009-04-03 20:05  
55
HTML   19944  2009-03-12 09:16 ~ 2015-10-13 00:00  
54
HTML   17510  2009-02-19 07:43  
53
HTML   23984  2009-02-19 02:13 ~ 2015-10-12 00:00  
52
HTML   22571  2009-02-12 22:01  
51
HTML   13563  2009-02-12 21:48  
50
HTML   14718  2009-02-12 21:16  
49
HTML   30898  2009-02-12 20:55  
48
HTML   17593  2009-02-12 20:08  
47
HTML   18262  2009-01-04 03:56  
46
HTML   16513  2009-01-04 03:51  
45
HTML   28687  2009-01-04 03:43 ~ 2019-09-19 15:11  
44
HTML   25500  2009-01-04 03:11 ~ 2009-01-04 00:00  
43
HTML   17410  2009-01-04 02:43  
42
HTML   15172  2008-09-22 17:38  
41
HTML   13550  2008-08-06 15:14  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2026 해피정닷컴. All Rights Reserved.