JSFiddle - React, Tailwind, and code Playground

by FRINTON Madtha

HTML

<!-- Hover over Frinton image to see effect -->
<img src="http://photos-g.ak.instagram.com/hphotos-ak-xfp1/10349751_535589793218926_1955695736_a.jpg"/>

CSS

img {
    opacity: 2.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
  }

img:hover {
    opacity: 0.2;
    filter: alpha(opacity=30); /* For IE8 and earlier */
}