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
Post a Comment