![]() |
divy + frame - Wersja do druku +- Forum Webmastera, HTML, CSS, PHP, MySQL, Hosting, Domeny - Forum dla Webmasterów (https://www.webmastertalk.pl) +-- Dział: Technologie internetowe - tworzenie stron WWW (https://www.webmastertalk.pl/forum-technologie-internetowe-tworzenie-stron-www) +--- Dział: xHTML, CSS, JavaScript (https://www.webmastertalk.pl/forum-xhtml-css-javascript) +--- Wątek: divy + frame (/thread-divy-frame) |
divy + frame - sadek - 03-03-2009 Mam pytanie, czy da się w jakikolwiek sposób połączyć ze sobą divy i frame?? Załóżmy że chcę stworzyć trzy ramki a a nad nimi umieścić nagłówek czyli zdjęcie, albo jakiś tekst, czy da rade takie coś zorbić?? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" /> <meta name="Description" content="Opis zawartości strony" /> <meta name="Keywords" content="Wyrazy kluczowe" /> <meta name="Author" content="Autor strony" /> <title>Tytuł strony</title> </head> <STYLE TYPE="text/css"> #header { background:url(zdjęcia/9997.jpg) repeat-x; border:3mm solid black; width:764px; height:200px; } </style> <body> <div id="header"></div></body> <frameset cols="180,180,*" border="30px" frameborder="1"> <frame name="spis" noresize="noresize" src="spis.html" /> <frame name="strona" noresize="noresize" src="home.html" /> <frame name="taniec" noresize="noresize" src="Taniec Nowoczesny.html" /> <noframes><body><a href="spis.html">spis treści</a></body></noframes> </frameset> </html> po wpisaniu tego kodu wyświetla mi się sam div, czy jest jakaś możliwość wyświetlenia diva i ramek?? |