Visualizzazione dei risultati da 1 a 2 su 2

Discussione: frame explorer

  1. #1
    Utente di HTML.it
    Registrato dal
    Feb 2001
    Messaggi
    1,471

    frame explorer

    ho un frame diviso in tre parti
    intestazione (in alto con il logo)
    sommario (a sinistra, il menu)
    home (parte centrale contenuto della pagina)

    questo il codice :
    <html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title></title>
    </head>
    <frameset rows="100,*" framespacing="0" border="0" frameborder="0">
    <frame name="intestazione" scrolling="no" noresize target="intestazione" src="testa.htm" marginwidth="0" marginheight="0">
    <frameset cols="150,*">
    <frame name="sommario" target="principale" src="sommario.htm" marginwidth="0" marginheight="0" scrolling="no" noresize>
    <frame name="principale" src="home.htm" marginwidth="0" marginheight="0" scrolling="auto" noresize target="_self">
    </frameset>
    <noframes>
    <body MARGINHEIGHT="0" MARGINWIDTH="0">
    </body>
    </noframes>
    </html>



    problema (grosso problema) :
    va con mozilla e netscape 6
    ma con explorer 6.0 no !!!


    Come faccio ? Dove ho sbagliato ?
    Mi date un aiuto per favore ?

    :master:

  2. #2
    Utente di HTML.it
    Registrato dal
    Dec 2000
    residenza
    Savona
    Messaggi
    897
    Hai fatto un po' di confusione: primo, hai posizionato il Tuo codice nel limbo (né head né body), poi devi tenere a mente che la pagina master (quella che racchiudi i frames) non fa uso del tag body; in ultimo hai assegnato al frame il target che devi assegnare all'href.
    Ecco il Tuo codice "pulito":

    <html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title></title>
    </head>
    <frameset rows="100,*" f border=0 frameborder=no>
    <frame name="intestazione" name="left" scrolling="no" noresize src="testa.htm">
    <frameset cols="150,*">
    <frame name="sommario" name="top src="sommario.htm" scrolling=no noresize>
    <frame name="principale" src="home.htm" noresize scrolling=no>
    </frameset>
    </frameset>
    </html>

    A disposizione.
    Ciao,
    dover

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.