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> 展开
<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> 展开
展开全部
你把第二块的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>
正确代码为
<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>
展开全部
因为<div id="layout1">没有结束标签。
另外第二个div你是不是要写<div id="layout2">结果写成<div id="layout3">了啊,当然这个跟你的错误没关系。
另外第二个div你是不是要写<div id="layout2">结果写成<div id="layout3">了啊,当然这个跟你的错误没关系。
来自:求助得到的回答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!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用了两个
<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用了两个
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你写错啦,里面有两个layout3 ,还有layout1 这个DIV 没有闭合 少了一个</div>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<div id="layout1">没有结束标签。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询