如何更改 apDiv 的背景颜色?

发布于 2024-11-05 01:38:52 字数 257 浏览 0 评论 0原文

如何更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-11-12 01:38:52

正确的 CSS 是

background-color: #eeeeee;

一些浏览器可能会原谅省略#,但其他浏览器则不会。

The correct CSS would be

background-color: #eeeeee;

Some browsers may forgive the omission of the #, others will not.

倥絔 2024-11-12 01:38:52

您需要使用 background-color: #eeeeee; 而不是 background-color: eeeeee;

也许链接到此有点过分,但来自规范 :

RGB值的格式
十六进制表示法是“#”
紧接着三个
或六个十六进制字符。

现代浏览器不会原谅省略 #除非它们位于 怪癖模式=坏):

CSS 解析器不接受颜色
以 # 开头。

You need to use background-color: #eeeeee; instead of background-color: eeeeee;.

Maybe linking to this is a little overboard, but from the spec:

The format of an RGB value in
hexadecimal notation is a '#'
immediately followed by either three
or six hexadecimal characters.

Modern browsers don't forgive the omission of the #, unless they are in Quirks Mode (=bad):

The CSS parser accepts colors not
beginning with #.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文