In generale se metto degli stili ad una pagina con i frame gli attributi vengono ereditati anche dalle altre pagine all'interno dei frame?codice:Non funziona cmq...posto per intero tutta la pagina. <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> .text { font-family: "Book Antiqua"; // tipo carattere font-size: 30px; // dimensione carattere background-color: black; // colore sfondo border: 2px outset gray; // tipologia bordo di colore arancione } .textarea { font-family: "Book Antiqua"; // tipo carattere font-size: 14px; // dimensione carattere border: 1px outset gray; // tipologia bordo di colore arancione background-color: #FFFFFF; // colore sfondo } .button { font-family: "Book Antiqua"; // tipo carattere color: #FFFFFF; // colore carattere font-size: 14px; //dimensione carattere background-color: #FFFFFF; // colore sfondo border: 1px solid #CCCC00; // tipologia bordo di colore giallo } </style> <STYLE type="text/css"> BODY { scrollbar-face-color:#000000; scrollbar-highlight-color:#000000; scrollbar-3dlight-color:#000000; scrollbar-darkshadow-color:#000000; scrollbar-shadow-color:#000000; scrollbar-arrow-color:#FFFFFF; scrollbar-track-color:#000000; } </STYLE> </head> <body bgcolor="#000000" text="#FFFFFF"> <hr> <center> <font size="4"> Zenone </font> </center> <hr> <center> <form name="form1" method="post" action="s_mod.php"> <table width="80%" border="0"> <tr> <td width="36%"> <center> Avatar: </center> </td> <td width="64%"> <input type="text" class="text" name="avatar" value="" maxlength="52" size="60%" > </td> </tr> <tr> <td width="36%"> <center> Descrizione: </center> </td> <td width="64%"> <textarea class="textarea" name="descrizione" rows="3" cols="60%">be</textarea> </td> </tr> <tr> <td width="36%"> <center> Storia: </center> </td> <td width="64%"> <textarea class="textarea" name="storia" rows="3" cols="60%">vo</textarea> </td> </tr> <tr> <td width="36%"> <center> Note: </center> </td> <td width="64%"> <textarea class="textarea" name="amici" rows="3" cols="60%">blabla</textarea> </td> </tr> <tr> <td width="36%"><center> E-mail </center></td> <td width="64%"> <input type="text" class="text" name="avatar2" value="@hotmail.com" maxlength="52" size="60%" > </td> </tr> </table> <input type="submit" name="invia" value="Invia le Modifiche"> </form> </center> </body> </html>
Grazie![]()