Visualizzazione dei risultati da 1 a 5 su 5

Discussione: 2 frame

  1. #1

    2 frame

    Qualcuno mi sà aiutare a costruire questa tipologia di frame???

    ---------------------
    |...................|
    |...................|
    |....frame 1....|
    |...................|
    |...................|
    |_________...|
    |farme 2 |......|
    ---------------------

    non posso accettare che non si possa fare!

    Vi ringrazio anticipatamente!
    Aner

  2. #2
    Utente di HTML.it L'avatar di Sgnafurz
    Registrato dal
    Mar 2003
    Messaggi
    2,182

    Re: 2 frame

    se intendi questo

    codice:
    ---------------------
    |...................|
    |...................|
    |....frame 1........|
    |...................|
    |...................|
    |_________..........|
    |farme 2 |..........|
    ---------------------
    con i frame non si può e nemmeno ha senso usarli
    al massimo ti conviene inserire un IFRAME in una pagina e posizionarlo in basso a sinistra

  3. #3
    ... quindi fare una cosa di questo tipo:


    <iframe name="I1" src="pagina.htm">
    ma come faccio a dirgli che deve stare tutto in basso a sinistra?

  4. #4

    posizione iframe

    <html>

    <head>
    <title>index</title>
    </head>

    <body>
    <DIV STYLE="position:absolute; top:0px; left:0px">


    <iframe name="Menu" frameborder="0" height="400px" width="800px" scrolling="yes" src="menu.html"></iframe></p>
    </DIV>


    </body>

    </html>

    adesso lo posizionato tutto in altro a sinistra
    ma come posso dirgli che deve stare tutto in basso a sinistra
    Top --> diventa???

  5. #5
    Utente di HTML.it
    Registrato dal
    Dec 2000
    residenza
    Savona
    Messaggi
    897
    Con Frame:
    <html>
    <head>
    <title>
    </title>
    </head>
    <frameset rows="80%,20%" border=0 frameborder=no>
    <frame src="top.html" noresize, scrolling=no>
    <frameset cols="70%,*" border=0 frameborder=no>
    <frame src="bottomSx.html" noresize, scrolling=no>
    <frame src="bottomDx.html" noresize, scrolling=no>
    </frameset>
    </frameset>
    </html>


    Con iframe:
    <html>
    <head>
    <title>
    </title>
    </head>
    <body>
    <table border=1 width=100% height=100%>
    <tr height=70%>
    <td colspan=2>
    top</td></tr>
    <tr>
    <td width=70%>
    <iframe src="top.html" name="top" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>
    </td>
    <td width=30%>Dx Bottom</td>
    </tr></table>
    </body>
    </html>




Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.