iframe funktioniert nicht

reykone

Grünschnabel
html datei

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">


<title>Testing</title>
<link rel="stylesheet" type="text/css" href="test.css">
</head>
<body>

<div class="titel">
Titel
</div>

<div class="navi">
Navigation
</div>

<div class="inhalt">
Inhalt
</div>

<div class="unten">
unten
</div>

<iframe
name="rechts"
src="start.html"
class="iframe"
align="left"
/>
</body>
</html>


Die css datei
.titel {
width: 410px;
height: 50px;
padding:5px;
border: 5px solid black;
Background-color: yellow;
}

.navi {
width: 100px;
height: 200px;
padding:5px;
float: left;
border: 5px solid black;
Background-color: yellow;

}

.inhalt {
width: 290px;
height: 200px;
padding:5px;
border: 5px solid black;
Background-color: yellow;
margin-left: 120px;


}

.unten {
width: 410px;
height: 50px;
padding:5px;
border: 5px solid black;
Background-color: yellow;
}

.iframe{
background-color: #ffff00;
width: 290px;
height: 200px;
padding: 5px;
border: 5p solid #00001f;
overflow: auto;

}
 
Was heist den Funktioniert nicht ?
Was steht den in der Console ?
Da steht bestimmt was mit Cors und blocking oder ?
Noch was,
Iframe muss man wieder schließen </iframe>

Kann das sein das du den Iframe da rein haben willst wo jetzt Inhalt steht ?
Du solltest dir vieleicht auch mal Ajax ankucken dann, weil Iframe und Frames benutzt man heute so nicht mehr wenn man Seiten nachladen möchte.
 
Zuletzt bearbeitet:
Zurück