Visualizzazione dei risultati da 1 a 3 su 3
  1. #1
    Utente di HTML.it
    Registrato dal
    Nov 2005
    Messaggi
    5

    Frame e centratura pagina

    Ciao,
    avendo una pagina web composta da due frame, e volendo impostare detta pagina centratta come quella di html come posso agire ?

    il codice della pagine con i frame è il seguente:

    !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>XXXXXXXXXXXX</title>
    </head>

    <frameset rows="*" cols="193,852*" framespacing="0" frameborder="no" border="0">
    <frame src="menu_xx.htm" name="leftFrame" scrolling="auto" noresize>
    <frame src="home_pxxx.htm" name="mainFrame">
    </frameset>
    <noframes><body>
    </body></noframes>
    </html>

    grazie
    Ciao

  2. #2
    Utente di HTML.it
    Registrato dal
    Jun 2005
    Messaggi
    2,125
    ......ho letto velocemente....ma....
    Mettere i due frame in una table e dare alla table align = "center" ???

  3. #3
    Utente di HTML.it L'avatar di Angarat
    Registrato dal
    Nov 2003
    Messaggi
    157
    per un layout centrato prova:

    codice:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> 
    <html> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    <title>XXXXXXXXXXXX</title> 
    </head> 
    
    <frameset cols="*,150,650,*" framespacing="10" frameborder="yes" border="10">
      <frame src="sx.htm" name="sx" scrolling="no" noresize>
      	<frame src="menu.htm" name="menu" scrolling="auto" noresize>
      	<frame src="home.htm" name="home" scrolling="auto" noresize>
      <frame src="dx.htm" name="dx" scrolling="no" noresize>
    </frameset> 
    <noframes><body> 
    </body></noframes> 
    </html>
    dove sx.html e dx.html sono pagine senza contenuto o al massimo uno sfondo

    se vuoi anche un frame per l'intestazione prova questo:

    codice:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> 
    <html> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    <title>XXXXXXXXXXXX</title> 
    </head> 
    
    <frameset cols="*,780,*" framespacing="10" frameborder="yes" border="10">
      <frame src="sx.htm" name="sx" scrolling="no" noresize>
      <frameset rows="150,*" framespacing="10" frameborder="yes" border="10">
      	<frame src="intestazione.htm" name="intestazione" scrolling="no" noresize>
      	<frameset cols="150,*" framespacing="10" frameborder="yes" border="10">
      		<frame src="menu.htm" name="menu" scrolling="auto" noresize>
      		<frame src="home.htm" name="home" scrolling="auto" noresize>
      	</frameset>
      </frameset>
      <frame src="dx.htm" name="dx" scrolling="no" noresize>
    </frameset> 
    <noframes><body> 
    </body></noframes> 
    </html>
    ho messo i bordi a 10 solo per visualizzare meglio il risultato...

    cmq. ti sconsiglio l'uso dei frame xche secondo me è una tecnologia vecchia e anche difficilmente gestibile

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.