Hallo,
zuerst einmal bin ich gerade dabei mir css anzueignen, dabei habe ich ein Problem festgestellt. ich habe eine HTML datei
(vereinfacht) die in einem iFrame angezeit werden soll. Als stylesheet benutze ich :
wenn ich die html datei nun einzeln anzeige ist alles so wie es soll formatiert, im iFrame ist jedoch nichts formatiert.
Für jede Hilfe wäre ich sehr dankbar.
EMP
zuerst einmal bin ich gerade dabei mir css anzueignen, dabei habe ich ein Problem festgestellt. ich habe eine HTML datei
HTML:
<head>
<link rel="stylesheet" type="text/css" href="format.css">
</head>
<h1>Überschrift<h1>
<A href="loginform.html" target = "inhalt">Login</A> <br><br>
Code:
<style type="text/css">
a:link {color: gold; font: 12px bold Arial;}
a:visited {color: gold; font: 12px bold Arial;}
a:hover { text-decoration: none; }
a:active { text-decoration: line-through; }
a:focus { text-decoration: blink; }
h1 {color: gold;}
</style>
Für jede Hilfe wäre ich sehr dankbar.
EMP