How do I position the iframe below according to the position I want on the screen?

-1

How do I position the iframe below according to the position I want on the screen?

<div>
            <iframe
                    width="1100"
                    height="500"
                    id="processoControleExterno"
                    src="www.google.com"
                    scrolling="no"
            >
            </iframe>
</div>
    
asked by anonymous 21.10.2015 / 21:22

1 answer

0
<div id="iframe">
        <iframe
                width="1100"
                height="500"
                id="processoControleExterno"
                src="www.google.com"
                scrolling="no"
        >
        </iframe>
</div>
<style>
    #iframe{
        position: fixed;
        top: 10px; //ou onde você quiser
        left: 10px; //ou onde você quiser
    }
</style>
    
07.10.2016 / 21:11