为了账号安全,请及时绑定邮箱和手机立即绑定

两个代码有什么区别?为什么页面显示不同?

代码1:

<!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>无标题文档</title>
<style type="text/css">
*{margin:0; padding:0;}
#wrap{margin:0 auto; width:960px; background:#666;}
#header{background:#0F3; width:100%;}
#mainbody{background:#33F; width:100%;}
#footer{background:#999; width:100%;}
.left{width:800px;height:200px; background:#FF0; float:left;}
.right{width:140px; height:500px; background:#F0F; float:left;}
</style>
</head>

<body>
<div id="wrap">
	<div id="header">header</div>
    <div id="mainbody">
    	<div class="left">left</div>
        <div class="right">right</div>
    </div>
    <div id="footer">footer</div>
</div>
</body>
</html>

代码2:

<!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>无标题文档</title>
<style type="text/css">
* {
    margin:0;
	padding:0;
}
#wrap {
	background:#00C;
	margin:0 auto;
	width:960px;
}
#header {
	background:#FF3300;
	width:100%;
}
#mainbody {
	    background:#FC0;
	   width:100%;
}
.left {
	width:800px;
	height:200px;
	background:#000;
    float:left;
}
.right {
width:140px;
height:500px;
background:#690;
float:left;
}
#footer {
	background:#639;
	width:100%;
}
</style>
</head>

<body>
<div id="wrap">
  <div id="header">头部</div>
  <div id="mainbody">
    <div class="left"></div>
    <div class="right"></div>
  </div>
  <div id="footer">版权部分</div>
</div>
</body>
</body>
</html>


正在回答

4 回答

<!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>无标题文档</title>

<style type="text/css">

* {

    margin:0;

    padding:0;

}

#wrap {

    background:#00C;

    margin:0 auto;

    width:960px;

}

#header {

    background:#FF3300;

    width:100%;

}

#mainbody {

        background:#FC0;

       width:100%;

       overflow:hidden;

}

.left {

    width:800px;

    height:200px;

    background:#000;

    float:left;

}

.right {

width:140px;

height:500px;

background:#690;

float:right;

}

#footer {

    background:#639;

    width:100%;

}

</style>

</head>

 

<body>

<div id="wrap">

  <div id="header">头部</div>

  <div id="mainbody">

    <div class="left"></div>

    <div class="right"></div>

  </div>

  <div id="footer">版权部分</div>

</div>

</body>


</html>


0 回复 有任何疑惑可以回复我~

而且神奇的是当中英文混合的时候,英文字母个数大于中文个数才行

0 回复 有任何疑惑可以回复我~

我发现是由于 <div id="footer">版权部分</div>里面的内容是中文的原因,英文的话是不会出问题的

0 回复 有任何疑惑可以回复我~

看了半天   我只发现第二个代码  最后多了一个</body>

感觉是在玩一起来找茬。。。

0 回复 有任何疑惑可以回复我~
#1

楠木710 提问者

即使去掉多余的</body>,两个代码显示的布局还是不一样,不知道哪的问题
2016-11-05 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
网页布局基础
  • 参与学习       214707    人
  • 解答问题       1756    个

让你精通CSS中三大定位机制,彻底掌握网页布局的相关知识

进入课程

两个代码有什么区别?为什么页面显示不同?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信