문제

this is for my site http://www.blindsdetroit.com/ I need to have text that you CANNOT see through over a background image that is see through. It is not working on chrome or firefox. Also the rgb won't work either, it just says its a invalid property value? Why is this

here is my css:

#top_box{
background: rgba (208,206,195,.5);
position:relative;
height:400px;
}
도움이 되었습니까?

해결책

I just gave it a try using the Chrome Developer tools and it appears to be the space between rgba and the left parenthesis. So, instead of:

background: rgba (208,206,195,.5);

Try...

background: rgba(208,206,195,.5);

다른 팁

replace rgb to rgba. it's working in chrome and firefox browsers.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top