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

这个是什么原因?

这样的代码为什么mainbody标签背景图是蓝色的,但是也通过了??

<!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>


正在回答

1 回答

background-color 属性用来定义元素的背景颜色。

body {background-color: #b0c4de;}

CSS中,颜色值通常以以下方式定义:

十六进制 - 如:#ff0000    它的三位颜色简写为 #f00

RGB - 如:rgb(255,0,0)

颜色名称 - 如:red

默认 - transparent,透明之意。如果一个元素没有指定背景色,那么背景就是透明的。

inherit 从父元素继承背景颜色,这个在IE上存在兼容问题。


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

Peyton_B 提问者

非常感谢!
2015-10-17 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

这个是什么原因?

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