I am trying to get to be set to an opacity: .04;, and when hovered over to be opacity:1; however, my img hover is not functioning. I am unsure of why t
opacity: .04;
opacity:1;
It did not work because you used # instead of . on the css selector
means you have to do .pic1 img:hover{ opacity: 1; } 0 讨论(0) 查看其它8个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
means you have to do
.pic1 img:hover{ opacity: 1; }