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,我想为我的文本添加一个阴影,但我想更改阴影的不透明度,这是我正在使用的代码。
提前致谢。
#text{ text-shadow: 2px 1px 2px #FF9D00; text-family: Gulim; font-weight: bold; font-style: italic; }
您需要使用 rgba 而不是 hex。最后一个参数是 alpha 值。
#text { text-shadow: 2px 1px 2px rgba(255, 157, 0, 0.5); font-family: Gulim; font-weight: bold; font-style: italic; }
此外,text-family它不是一个有效的属性。它是font-family(固定在上面)。
text-family
font-family