edit: I haven't seen anything from Facebook on this, but it appears to have been fixed within the last week by a change on their side
I have a section on a web site (a list in the right sidebar) that is populated with various news stories. Each news story has a Facebook like button, and several other social buttons (Twitter, Google+, etc.). For the Facebook like button, I'm using the HTML5 implementation because I need to control when and how the script is loaded for performance reasons.
The problem that I've come across is that the iframe height/width and z-index are controlled by Facebook, and the popup when you click 'Like' will end up blocking content even when the popup isn't visible. What happens is that the iframe is resized for the popup content, given z-index of 1, and then all the popup content is hidden - but the iframe is blocking all of the other content behind it.
For a simple demo of this issue, check out: http://www.capbreak.com/test.htm and click the like button, close the popup, click the like button again, close it again. On other sites it sometimes does it after only one click/close.
I can't use z-index to make the other elements visible because then they'll appear on top of the popup when I actually want the popup to display.
Google+ seems to handle this in a much more elegant manner, by appending the iframe as a new element to the DOM outside of the parent, and by moving their iframe using 'top' and 'left' CSS.
Sample code from above site:
<!DOCTYPE html>
<html>
<head>
<meta property="og:site_name" content="MarketWatch" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://www.marketwatch.com/story/us-stocks-applaud-ecbs-bond-buying-plan-2012-09-06" />
<meta property="og:title" content="U.S. stocks hit multi-year highs on ECB, jobs Market Snapshot" />
<meta property="og:image" content="http://s.marketwatch.com/public/resources/MWimages/MW-AE356_fb_mw__MA_20100420181620.jpg" />
<style type="text/css">
body { position:relative; }
.fb-like { position:absolute; top:100px; left:100px; overflow:visible; }
#link1 { position:absolute; top:250px; left:200px; }
#link2 { position:absolute; top:400px; left:200px; }
</style>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "http://connect.facebook.net/en_US/all.js#xfbml=1&appId=181004881977356";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-like fb_edge_widget_with_comment fb_iframe_widget" data-href="http://www.marketwatch.com/story/us-stocks-applaud-ecbs-bond-buying-plan-2012-09-06" data-send="false" data-layout="button_count" data-width="90" data-show-faces="false" style="z-index: 8; position: absolute; vertical-align: top; margin-left: 100px; margin-top: 58px; opacity: 1;"></div>
<div id="link1"><a href="http://www.google.com">Google Link</a></div>
<div id="link2"><a href="http://www.facebook.com">Facebook Link</a></div>
</body>
</html>