I am doing some tests with the new CSS3 features, but this combination only works in the latest versions of Chrome and Firefox, but not in Safari or Opera:
box-shadow: inset 0px -10px 20px 0px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: inset 0px -10px 20px 0px rgba(0, 0, 0, 0.5);
-moz-box-shadow: inset 0px -10px 20px 0px rgba(0, 0, 0, 0.5);
I really donβt know if they will work in the box itself, in the insert parameter or in RGBA color. Is this a syntax error or is it just that Safari and Opera are missing out on this?
source
share