[XHTML] Iframe dans FireFox
Bonjour,
Y a un truc qui doit m'échapper dans la construction de mes Iframe car dans IE j'arrive a ce que je veux mais pas dans FF.
mon but:
Code:
1 2 3 4 5 6 7 8 9 10 11 12
| ----------------------
| -------------- |
| | 1 | |
| |-------------| |
| | | | |
| | 2 | 3 | |
| | | | |
| |-------------| |
| | 4 | |
| |-------------| |
| |
|---------------------| |
ma Page XHTML:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>
Landesverwaltung Liechtenstein - Firmenindex - GBOERA
</title>
<link href="../StyleSheet.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
</head>
<!--iframe src="Kopf.htm" style="top:200px;left:200px"></iframe-->
<body>
<div id="seite4">
<iframe width="996px" height="151px" src="Kopf.htm" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" name="kopf"/>
<iframe height="650px" width="270px" src="Suchformular.htm" frameborder="0" name="main"/>
<iframe height="650px" width="720px" src="Help1.htm" frameborder="0" name="result"/>
<iframe height="20px" width="100%" src="fusszeile.htm" frameborder="0" scrolling="no"/>
</div>
</body>
</html> |
Biensur y a une CSS mais c'est pour que le résultat soit centré:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| body
{
background-color: #3C7BB6;
margin:0;
padding:0;
height:100%;
}
#seite
{
position:absolute;
background-color:#FFFFFF;
top:0px;
width:700px;
left:1%;
margin:7px;
margin-left:10px;
border-top-color:#000000;
border-top-style:solid;
border-top-width:1px;
border-bottom-color:#000000;
border-bottom-style:solid;
border-bottom-width:1px;
border-left-color:#000000;
border-left-style:solid;
border-left-width:1px;
border-right-width:1px;
border-right-color:#000000;
border-right-style:solid;
} |
Pouvez-vous m'aider?
Merci d'avance
++
Thierry