I have made a website in which i am applying white background color(#FFF ) to my panels(a div) to add some transparency effect. This works very fine in chrome & firefox . But doesn't work in Safari. What should i do to create the same effect in safari.
.panel{
position:relative;
background-color: #FFF;
background:#FFF;
bgcolor:#FFF;
#safari { background-color:#FFF }
}
I have tried all versions of background color(bgcolor, background-color etc) & also tried the hack
#safari{
background-color:#FFF
}
but none worked. please help. Also the Link tags not working in IE only but working perfectly in other browsers.
This blog post suggests this CSS hack:
try this:
Edited: this works for safari 7.1+ (in your case, 8.0)
A white background does not add any transparency.
You can try the following, which should work in all browsers: