I've just run into an interesting problem. I have 3 divs positioned next to each other with display:inline-block and with width:32%. All of them has a button inside which have box-shadow sets.
Output:
https://i.stack.imgur.com/whdXa.jpg
As you can see on the first picture there are shadows on the 1st and on the 3rd button, but the shadow's direction differs from the 2nd button's.
I've checked everything in the debugger, they have the same box-shadow setup.
If I change the inline-block to inline just for testing (second picture), the shadows are get into the same (right) direction, but - of course - there are problems with the widths.
I need to put the 3 buttons next to each other.
Please help :)
Thanks in advance!