Lid |
|
hallo,
hoe kan ik een bepaalde koppeling, link laten openen in een div?
stel dat ik een html pagina heb met deze code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="test.css" type="text/css" />
<title>test</title>
</head>
<body>
<div id="total">
<div id="sidebar">
<a href="http://www.google.be">ga naar google</a>
</div>
<div id="content">
</div>
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="test.css" type="text/css" /> <title>test</title> </head> <body> <div id="total"> <div id="sidebar"> <a href="http://www.google.be">ga naar google</a> </div> <div id="content"> </div> </div> </body> </html>
en deze css code gebruik:
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
background: yellow;
border: 5px dotted white;
}
div#total {
height: 100%;
background: yellow;
width: auto;
padding: 5px;
margin: auto;
}
div#sidebar {
height: 300px;
width: 150px;
background: red;
border: 1px dotted black;
float: left;
}
div#content {
float: left;
height: 300px;
width: 500px;
border: 1px dashed blue;
margin: auto;
}
html { height: 100%; } body { height: 100%; margin: 0; background: yellow; border: 5px dotted white; } div#total { height: 100%; background: yellow; width: auto; padding: 5px; margin: auto; } div#sidebar { height: 300px; width: 150px; background: red; border: 1px dotted black; float: left; } div#content { float: left; height: 300px; width: 500px; border: 1px dashed blue; margin: auto; }
hoe kan ik er dan voor zorgen dat de koppeling naar google geopent wordt in de div met id=content
zonder html-frames te gebruiken?
is er een manier waardoor ik bv. met php dan kan includen in de div content?
alvast bedankt
|