嵌套表格总是出错

嵌套表格总是出错

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta charset="utf-8">
</head>
    <body>
        <table width="100%" align="center">
       <tr height="80px" bgcolor="pink">
           <td>页头</td>
       </tr>
       <tr height="10px"><td></td></tr>
       <tr><td>
           <table align="center" width="1024px">
               <tr>
                  <td width="240px"  valign="top">
                    <table width="100%" bgcolor="orange" align="center">
                    <tr>
                                
                <td align="center" width="240px"></td>
                <td align="center" width="20px">左侧内容</td>
                <td align="center" width="764px">右侧内容</td>
                    </tr>
                            
                </table>
 
                  </td>
                  <td width="20px"></td>
                  <td width="764px" bgcolor="#ffffff">
                  
                  </td>
               </tr>
           </table>
 
       </td></tr>
       <tr height="10px"><td></td></tr>
       <tr height="80px" bgcolor="black"><td></td></tr>
 
     </table>
 
    </body>
</html>


正在回答

登陆购买课程后可参与讨论,去登陆

1回答

你好,这里的嵌套一个表格就可以了,不需要嵌套另个,而且如下图,宽度240px,那么包裹的表格就一共是240px,但是下面三个列的宽度240px;20px;764px;这是不合理的哦。建议:修改可参考如下代码:

http://img1.sycdn.imooc.com//climg/5a1a71b90001b59709060331.jpg

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<table width="100%" align="center">
     <tr height="80px" bgcolor="pink">
        <td>页头</td>
     </tr>
     <tr height="10px"><td></td></tr>
     <tr>
         <td bgcolor="orange">
             <table  align="center">
                <tr>
                    <td width="240px" bgcolor="#fff">左侧内容</td>
                    <td width="20px"></td>
                    <td width="764px" bgcolor="#fff">右侧内容</td>
                </tr>
            </table>
        </td>
    </tr>
    <tr height="10px"><td></td></tr>
    <tr height="80px" bgcolor="black"><td></td></tr>
</table>

祝学习愉快~

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师
插入代码