Hi,
I want to apply drop shadow for my tooltip. If i give the below script--> filter: progid:DXImageT ransform.Micros oft.Shadow(Stre ngth=4, Direction=135, Color='#000000' ); to my css, the drop shadow is coming for the tooltip but the arrow image in the tooltip is not displaying. I tried giving z-index property values but the arrow image is not displaying. I tried this with ie8.
My css for tooltip
Really appreciate you valuable answers.
I want to apply drop shadow for my tooltip. If i give the below script--> filter: progid:DXImageT ransform.Micros oft.Shadow(Stre ngth=4, Direction=135, Color='#000000' ); to my css, the drop shadow is coming for the tooltip but the arrow image in the tooltip is not displaying. I tried giving z-index property values but the arrow image is not displaying. I tried this with ie8.
My css for tooltip
Code:
.graphtooltip {
display: none;
padding: 10px;
color: white;
width: 300px;
height: 230px;
border:solid #e7e7e7 1px;
color:#000000;
background:#ffffff;
float:left;
text-align:left;
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}