Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear Friends,

I have used transparent style in Text box. But its working Chrome but not in IE.
Kindly suggest, what can I do.

Regards,
AP
Posted

1 solution

I believe that you are looking for this setting (for IE8 and below):

CSS
filter:alpha(opacity=50);


That would apply 50% transparency to the text box if you put it in the CSS. This would be the same as setting the opacity when it comes to other browsers:

CSS
opacity:0.5;


Here is more information on how to set transparency that will work for the different browsers:

http://www.w3schools.com/css/css_image_transparency.asp[^]
 
Share this answer
 
Comments
Arunprasath Natarajan 26-Jun-12 11:39am    
Yeah I am using IE8
Tim Corey 26-Jun-12 11:50am    
Then this should solve your issue. Modify your CSS and see if it works.

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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