#keyboard {
position: fixed;
background: #eee;
display: none;
border: 1px solid #ccc;
border-radius:7px;
width: 950px;
height: 300px;
padding: 5px;
cursor: move;
background-image:url('BackgroundImage.jpg');
box-shadow: -5px -5px 5px 5px #888;
-moz-border-radius: -5px -5px 5px 5px #888;
-webkit-border-radius: -5px -5px 5px 5px #888;
}
While the CSS code works fine in Firefox, there seems to be an issue displaying the shadow in IE8, IE6 and Safari.
box-shadow: -5px -5px 5px 5px #888;
I am currently seeking a solution for this problem. Your help will be much appreciated.