How would I darken a background image on hover without making a new darker image?
CSS:
.image { background: url(\
You can use opacity:
.image { background: url('http://cdn1.iconfinder.com/data/icons/round-simple-social-icons/58/facebook.png'); width: 58px; height: 58px; opacity:0.5; } .image:hover{ opacity:1; }
JSFiddle