Advertisement
arkader

Basic Hover Effect - Css

May 11th, 2012
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.31 KB | None | 0 0
  1. .view{
  2.     width: 300px;
  3.     height: 190px;
  4.     position: relative;
  5.     overflow: hidden;
  6. }
  7.  
  8. .view .mask{
  9.     position: absolute;
  10.     width: 300px;
  11.     height: 190px;
  12.     overflow: hidden;
  13.     top:0;
  14.     left: 0;
  15.     color: white;
  16.     background: rgba(0,136,255,0.2);
  17.     opacity: 0;
  18. }
  19.  
  20. .view img{
  21.     display: block;
  22.     position: relative;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement