I have a problem with hover effect on elements that are inside <iframe>
.
Code inside iframe, it's in domainA.com
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
img:hover {
opacity: 0.5;
}
</style>
</head>
<body>
<img src="/image1.jpg">
<img src="/image2.jpg">
<img src="/image3.jpg">
</body>
</html>
And second website on domainB.com
<iframe src="domainA.com/iframe.html">
When i embed iframe in domainB hover effect doesn't work. Is there any way to solve it somehow? I don't have access to code of domainB.com (other developer will put iframe there)