I have some div elements and I want to assign box-shadow
attribute when hover on them.
<style>
.hover-item :hover {
box-shadow: 4px 4px 2px;
}
</style>
But when i assign this class to them , their children <img />
and <h1></h1>
get this attribute and when I hover them they will have shadow.
I cant assign id to div elements because of some issues.