CSS Opacity or Transparency in Mozilla,IE, and Opera

No Comments

To make an HTML item, transparent in your web page, you need to add a below class into your css and apply it on your item page.

<style type=”text/css”>
.alpha50 {opacity:.50;filter: alpha(opacity=50); -moz-opacity: 0.5;}
</style>

Leave a Reply