Click here to Skip to main content
15,915,869 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
because of the below css code, cursor moves outside of the textbox for IE8

-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";



Please help me to show shadow and rounded corners for Table for All browsers (IE 8,Chrome,Firefox,safari).
Posted
Updated 15-Jul-13 7:06am
v2
Comments
Sergey Alexandrovich Kryukov 15-Jul-13 13:17pm    
Who needs a style effect which works only for IE?
—SA

1 solution

XML
<pre><asp:ModalPopupExtender DropShadow="true" BackgroundCssClass="modalBackground" ...

.modalBackground {
  background-color:Gray;
  filter:alpha(opacity=40);
  opacity:0.4;
}
</pre>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900