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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<html>
<style>
.pouet {
position:absolute;
top:0px;
left:50%;
width:1001px;
margin-left:-500px;
}
.menu {
float:right;
background:pink;
}
</style>
<body>
<div class="pouet">
<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="1" bordercolor="blue">
<tr>
<td>
<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="1" bordercolor="red">
<tr>
<td height="30px">
<div class="menu">c moi qui affiche le menu</div>
</td>
</tr>
<tr>
<td height="100%">
<iframe id="portal" name="portal" src="http://www.google.fr" width="100%" height="100%" frameborder="0"></iframe>
</td>
</tr>
<tr>
<td height="30px">
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html> |
Partager