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

为什么我这个清除浮动没有效果?

<!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: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>
</html>

正在回答

3 回答

#mainbody{
        background:#FC0;
        width:100%;
        overflow:hidden;}

代码中的 overflow:hidden;   符号错了(冒号、分号)

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

#mainbody {

   background:#FC0;

height:500px;

width:960px overflow:hidden;

}

.left {

width:800px;

height:200px;

background:#000;

float:left;

}

.right {

width:140px;

height:500px;

background:#690;

float:right;

}


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

.right {
width:140px;
height:500px;
background:#690;
float:left;
}

任务3:请补充代码使.right横向排列,并紧挨着#mainbody右边缘显示

所以float:right;

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

举报

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

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

进入课程

为什么我这个清除浮动没有效果?

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