I have a iframe like this: (this frame appears on left of screen at all time)
<iframe src="frame/index.html" class="left"></iframe>
and the CSS
.left
{
position: fixed;
top: 25%;
left: 1em;
width:200px;
height:200px;
overflow:hidden;
margin-right:10px;
border-style:none;
}
It works perfect in all web-kit browser, but on IE it appears on top(and middle) with border and abnormal height.
I tried messing up with lot of positioning but couldnot get it right. Any help would be appreciated! Thanks in advance
Cheers!