Can't I have both box shadow inner and outer on the same div? I've tried but it doesn't work
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You need to use comma to separate both shadows: http://jsfiddle.net/gryzzly/CWuw8/3/ You also need to add browser-specific prefixes in order for this to work everywhere it's supported:
And you must also specify color for you shadow in order for it to be seen. |
|||||
|
|
|
Using CSS3 you can have multple box shadows just by seperating them by commas eg:
You can have as many as you want. |
|||
|
|
|
Updated your fiddle for you: http://jsfiddle.net/CWuw8/4/ |
|||
|
|
