Add Iframe in a DIV

0

Dear, I am generating a html and I want to add an image that is in a wordpress path in a iframe within my page.

<div class="box-img-login">
    <iframe width="288px" height="214px" src="<portalWebUtils:link key="link.imagen.banner.login"/>" alt="Banner"></iframe>
</div>

But the div is shown with scroll horizontal and vertical, I have tried some attributes of the iframe but I have not managed to remove the scroll . Greetings.

    
asked by Stevn 15.11.2016 в 14:09
source

1 answer

0

Estimated the answer for the query made is the following.

          <div class="box-img-login">
            <iframe width="288px" height="214px" scrolling="no" frameborder="0" src="<portalWebUtils:link key="link.imagen.banner.login"/>" alt="Banner"></iframe>
          </div>

Greetings.

    
answered by 17.11.2016 / 21:15
source