如您所见,我的博客https://blog.cryformeqq.icu的标题当前具有标题的阴影,此外,背景色上方还有一个怪异的渐变(应该与底部的浅灰色相同)导航栏)
有人有什么想法吗?我尝试了一堆我在网上找到的东西,但是即使有用,也没有。
答案 0 :(得分:0)
摆脱这种风格以摆脱梯度:value
。
删除#header .header-bar { background-image: -moz-linear-gradient( center top, rgba(255, 255, 255, 0.1), rgba(100, 100, 100, 0.05) ); background-image: -webkit-gradient( linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.05)) );
以摆脱文字阴影。
或用#header .header-bar .title h1 { text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3); }
和header .header-bar .title h1 { text-shadow: none; }
覆盖