0

I am trying to create a mouseover effect whereby text (or an image) will dip to 50% opacity on mouseover.

Because I am creating this for an e-mail signature I am restricted to using inline CSS and HTML only.

  • possible duplicate of [How to write a:hover in inline CSS?](http://stackoverflow.com/questions/1033156/how-to-write-ahover-in-inline-css) – Clément Malet Sep 04 '13 at 09:26

2 Answers2

0

To date, Outlook (Even 2013) does not support any CSS3 or javascript / jQuery.

Dale
  • 945
  • 2
  • 9
  • 23
0

Html:

<div id="something">Hello!</div>

CSS code:

#something:hover
{
   opacity:0.5;
   filter="alpha(opacity=50)";
}
OriShuss
  • 269
  • 2
  • 3
  • 14