This topic created in 5773 days ago, the information mentioned may be changed or developed.
V2EX 首页 fineao 记事本 设置 登出
这些
...
统统不显示!
我是在刚网页刚打开 css 还没加载时 突然看到这几个 光秃秃的字,等加载完网页突然就看不到了。
Ctrl+A 才看到了,貌似字体和背景色相同 -______-"
Opera 10.60 下测试
8 replies • 1970-01-01 08:00:00 +08:00
 |
|
2
leeiio Jul 22, 2010
目前只有firefox和webkit支持线性渐变背景
|
 |
|
3
disinfeqt Jul 22, 2010
但是有保底的 background 颜色啊,应该是纯色才对呀。 说起来,懒得理 Opera。
|
 |
|
4
Hlbice Jul 22, 2010
background:#303033; background: -moz-linear-gradient(center top , #444, #111) repeat scroll 0 0 transparent; background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111)); 下载 css 文件后,发觉是被第二句给影响了。
|
 |
|
5
Hlbice Jul 22, 2010
改成这样就没问题了: background-color: #303033; background-image: -moz-linear-gradient(center top , #444, #111); background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111));
|