0
我在我的練習網站上使用了部分CSS,我想爲我的文本添加陰影,但是我想更改陰影上的不透明度,這是我正在使用的代碼。CSS text-shadow opcity
在此先感謝。
#text{ text-shadow: 2px 1px 2px #FF9D00; text-family: Gulim; font-weight: bold; font-style: italic; }
我在我的練習網站上使用了部分CSS,我想爲我的文本添加陰影,但是我想更改陰影上的不透明度,這是我正在使用的代碼。CSS text-shadow opcity
在此先感謝。
#text{ text-shadow: 2px 1px 2px #FF9D00; text-family: Gulim; font-weight: bold; font-style: italic; }
您需要使用rgba而不是十六進制。最後一個參數是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
(固定在上面)。
好的謝謝,它現在工作,再次感謝 – 2013-04-30 14:35:19
將其轉換爲RGBA。 – 2013-04-30 14:32:33
相似的問題:http://stackoverflow.com/questions/11549757/text-shadow-opacity – Richard 2013-04-30 14:37:39