I'm having trouble aligning my iFrame to the left side of the web browser. It seems to be stuck and isn't flush against the edge, about 300 - 400 px off. Any suggestions? Thank you.
Below is my CSS code:
.wrapper {
display: block;
position:fixed;
top: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 100px 0 20px;
}
.wrapper iframe {
height: 100%;
width: 100%;
}
<div class="wrapper">
<iframe src="My Source"></iframe>
</div>