div 이용한 표가 높이가 맞춰지지 않네요. 채택완료

주소 http://www.allstatewaterproofing.net/a/index.php

index 에 index_content.php 를 불러왔는데, 표 높이가 표현이 안됩니다. 고수님들의 수정 부탁드립니다.

=====================================index.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Allstate Waterproofing</title>

</head>

<body>
<center>
<table width="800" border="0" cellpadding="0" cellspacing="0">
   
          <tr>
            <td width="800" height="120"><?php include("top.php");?></td>
          </tr>
          <tr>
            <td width="800" height="30"><?php include("menu.php");?></td>
          </tr>
          <tr>
             <td width="800"><?php include("index_content.php");?></td>
           </tr>
          <tr>
             <td width="800" height="40"><?php include("footer.php");?></td>
          </tr>
         
    </table>
   
</center>
</body>
</html>


====================index_content.php

<div style="width:800px; height:25; background:#e4e4e4"></div>   

<div style="width:25px; height:350; background:#e4e4e4;float:left"></div>   
<div style="width:540px; height:350; background:#0000ff;float:left"></div>
<div style="width:10px; height:350; background:#e4e4e4;float:left"></div> 
<div style="width:200px; height:350; background:#0000ff;float:left"></div>
<div style="width:25px; height:350; background:#e4e4e4;float:left"></div> 


<div style="clear:both;"></div>
<div style="width:800px; height:10; background:#e4e4e4"></div>
<div style="width:25px; height:200; background:#e4e4e4;float:left"></div>   
<div style="width:540px; height:200; background:#0000ff;float:left"></div>
<div style="width:10px; height:200; background:#e4e4e4;float:left"></div> 
<div style="width:200px; height:200; background:#0000ff;float:left"></div>
<div style="width:25px; height:200; background:#e4e4e4;float:left"></div> 

<div style="clear:both;"></div>
<div style="width:800px; height:25; background:#e4e4e4"></div>


답변 1개

채택된 답변
+20 포인트
height:350;

에서 px 이 빠졌습니다.
height:350;  -> height:350px;  이런식으로 모든 높이값을 수정해 주세요
로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인
🐛 버그신고