PHP beginner |
|
Als het goed is geeft onderstaande code het gewenste resultaat.
<html>
<head>
<style type="text/css">
<!--
body { margin: 0; padding: 0; }
#weerwrapper { margin: 0 auto 0 auto; width: 361px; position: relative; }
#buienradar { position: absolute; top: -135px; left: -170px; clip:rect(135px, 531px, 535px, 170px); height: 627px; width: 700px; }
#weerforum { position:absolute; top:14px; left:10px; width: 343px; height: 358px; }
//-->
</style>
</head>
<body>
<div id="weerwrapper">
<img id="buienradar" title="Afbeelding Buienradar" src="http://www.buienradar.nl/images.aspx?jaar=-3&bliksem=0&voor=&soort=loop1uur1x1_bliksem" />
<img id="weerforum" title="Afbeelding Weerforum" src="http://weerforum.eu/wibisaradar/images/weerkaart.gif" />
</div>
</body>
</html>
<html> <head> <style type="text/css"> <!-- body { margin: 0; padding: 0; } #weerwrapper { margin: 0 auto 0 auto; width: 361px; position: relative; } #buienradar { position: absolute; top: -135px; left: -170px; clip:rect(135px, 531px, 535px, 170px); height: 627px; width: 700px; } #weerforum { position:absolute; top:14px; left:10px; width: 343px; height: 358px; } //--> </style> </head> <body> <div id="weerwrapper"> <img id="buienradar" title="Afbeelding Buienradar" src="http://www.buienradar.nl/images.aspx?jaar=-3&bliksem=0&voor=&soort=loop1uur1x1_bliksem" /> <img id="weerforum" title="Afbeelding Weerforum" src="http://weerforum.eu/wibisaradar/images/weerkaart.gif" /> </div> </body> </html>
|