[CSS] hoverで透明度


/ Published in: CSS
Save to your folder(s)

hoverで透明度


Copy this code and paste it in your HTML
  1. a:hover {
  2. -moz-opacity:0.40;
  3. opacity:0.40;
  4. filter:alpha(opacity=40);
  5. }

Report this snippet


Comments


You need to login to view comments.