css,三个div块同处一列,都设置浮动为float:left,效果显示为三个块重叠在一起,为什么? 20

<html><head><styletype="text/css">#layout1{height:300px;width:50px;background-color:y... <html>
<head>
<style type="text/css">
#layout1
{
height:300px;
width:50px;
background-color:yellow;
float:left;
}
#layout2
{
height:300px;
width:50px;
background-color:blue;
float:left;
}
#layout3
{
height:300px;
width:50px;
background-color:blue;
float:left;
}
</style>
</head>
<body>
<div id="layout1">
<p>此处是id为layout1块</p>
<div id="layout3">
<p> 此处是id为layout2块</p>
</div>
<div id="layout3">
<p>此处是id为layout3块</p>
</div>
</body>
</html>
展开
 我来答
不带感琴
推荐于2018-04-10 · TA获得超过107个赞
知道答主
回答量:32
采纳率:100%
帮助的人:10万
展开全部
你把第二块的id值写错了,layout2写成了layout3,还有就是你少了一个</div>这是初学者经常犯的错误.我刚刚运行了下,只要改一点点就是正确的。
正确代码为
<html><head>
<style type="text/css">
#layout1{height:300px;width:50px;background-color:yellow;float:left;}
#layout2{height:300px;width:50px;background-color:green;float:left;}
#layout3{height:300px;width:50px;background-color:blue;float:left;}
</style>
</head>
<body>
<div id="layout1"><p>此处是id为layout1块</p></div>
<div id="layout2"><p> 此处是id为layout2块</p></div>
<div id="layout3"><p>此处是id为layout3块</p></div>
</body>
</html>
tianye72
2013-03-06 · TA获得超过446个赞
知道小有建树答主
回答量:121
采纳率:0%
帮助的人:107万
展开全部
因为<div id="layout1">没有结束标签。
另外第二个div你是不是要写<div id="layout2">结果写成<div id="layout3">了啊,当然这个跟你的错误没关系。
来自:求助得到的回答
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
_summer_9
2013-03-14 · TA获得超过186个赞
知道小有建树答主
回答量:220
采纳率:0%
帮助的人:90.3万
展开全部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
#layout1 {
height:300px;
width:50px;
background-color:yellow;
float:left;
}
#layout2 {
height:300px;
width:50px;
background-color:blue;
float:left;
}
#layout3 {
height:300px;
width:50px;
background-color:red;
float:left;
}
</style>
</head>
<body>
<div id="layout1">
<p>此处是id为layout1块</p>
</div>
<div id="layout2">
<p> 此处是id为layout2块</p>
</div>
<div id="layout3">
<p>此处是id为layout3块</p>
</div>
</body>
</html>
自己试试....你的第一个div没有结束,layout3用了两个
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
大莆田手机网
2013-03-07 · TA获得超过1178个赞
知道小有建树答主
回答量:1747
采纳率:85%
帮助的人:714万
展开全部
你写错啦,里面有两个layout3 ,还有layout1 这个DIV 没有闭合 少了一个</div>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
轻舟翩然来
2013-03-16 · 超过26用户采纳过TA的回答
知道答主
回答量:318
采纳率:0%
帮助的人:109万
展开全部
<div id="layout1">没有结束标签。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(6)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式