如何更改 apDiv 的背景颜色?
如何更改 apDiv 的背景颜色?我尝试使用背景颜色:eeeeee;在 Dreamweaver 中看起来不错,但在 chrome 和 firefox 中颜色仍然是白色。
http://www.sandboxes.tk/sandboxes/testproject.php
亲切的问候
Pongy
How do I change the background color of an apDiv? I tried using background-color: eeeeee; and it looks fine in dreamweaver but in chrome and firefox the color remains white.
http://www.sandboxes.tk/sandboxes/testproject.php
Kind regards
Pongy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正确的 CSS 是
一些浏览器可能会原谅省略#,但其他浏览器则不会。
The correct CSS would be
Some browsers may forgive the omission of the #, others will not.
您需要使用
background-color: #eeeeee;
而不是background-color: eeeeee;
。也许链接到此有点过分,但来自规范 :
现代浏览器不会原谅省略
#
,除非它们位于 怪癖模式(=坏):You need to use
background-color: #eeeeee;
instead ofbackground-color: eeeeee;
.Maybe linking to this is a little overboard, but from the spec:
Modern browsers don't forgive the omission of the
#
, unless they are in Quirks Mode (=bad):