Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 CSS 文件包含我的网页显示,网页比屏幕小(如果你知道我的意思)我试图用背景颜色填充容器的外部,但它不起作用。有人可以帮忙吗?这是我的 CSS
#container { width: 900px; margin: 0 auto; }
正文/导航等位于#container 下方,背景颜色必须在容器之前吗?我把它放在那里,它不工作?
可以涂在身上吗?
body { background-color:red; }
css中的body{}指的是网站的完整<body>。只需在此处设置背景颜色,例如:
body {background-color: #fedae3;}
当然,容器需要另一种背景颜色。