HTML beginner |
|
Hoe kan ik er voor zorgen dat m'n iframe gecentreerd wordt op m'n scherm (bij gelijk welke resolutie).
Ik heb het volgende geprobeerd:
<table width="100%" height="100%" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" height="100%" align="center" valign="middle">
<iframe align="left" frameborder="0" height="490" width="780" hspace="0" vspace="0" marginheight="0" marginwidth="0" name="hoofdframe" scrolling="no" src="home.htm">
</iframe>
</td>
</tr>
</table>
<table width="100%" height="100%" border="1" cellpadding="0" cellspacing="0"> <tr> <td width="100%" height="100%" align="center" valign="middle"> <iframe align="left" frameborder="0" height="490" width="780" hspace="0" vspace="0" marginheight="0" marginwidth="0" name="hoofdframe" scrolling="no" src="home.htm"> </iframe> </td> </tr> </table>
De iframe staat gecentreerd t.o.v. boven en onder, maar het staat wel links Hoe kan ik er voor zorgen dat de iframe in het midden staat?
|