CSS, Adding additional background on hover -


is there way add additional background div on hover? example add black background 50% opacity on top of existing background image.

thanks.

it better if post code you're trying achieve, posted simple example. if helps use !important force overriding

div{     background: yellow; } div:hover {     background:black;     opacity:0.5; } 

Comments

Popular posts from this blog

php - Passing multiple values in a url using checkbox -

compilation - PHP install fails on Ubuntu 14 (make: *** [sapi/cli/php] Error 1) PHP 5.6.20 -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -