I've never been real clear on what clip does. I think you need a block level element (iframes are inline). Even if you set its display to block, iframes are tricky, and as I say, clip is too. There seem to be a number of ways you can write it, and then there's visualizing the spacial math involved.
Anyways, this seems to work out fairly well:
Code:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
#container {
position: relative; overflow: hidden; width: 610px; height: 415px;
}
#proba {
position: absolute; width: 610px; height: 700px; top: -285px; left: 0px; display: block; border-width: 0;
}
</style>
</head>
<body>
<p>Some other content</p>
<div id="container"><iframe id="proba" scrolling=no frameborder=0 src="http://www.tu.tv/videos/azumanga-daioh-01"></iframe></div>
</body>
</html>
Bookmarks