Nieuw lid |
|
ik tracht een javascript menu binnen in een kader te plaatsen. Eerst heb ik dat binnen een tabel geprobeerd, daarna in een div. In beide gevallen blijft het menu buiten het kader. Dus bij het centreren van de div, blijft het menu links uitgelijnd!
<html>
<head>
<title></title>
<style type="text/css">
body { background-color: #000000;
text-align: center;
margin: auto; }
}
#inhoud {width: 80%;
height:500px;
position: absolute;
margin-left: -40%;
margin-top: -250px;
top: 50%;
left: 50%;
background-color: #ffffff
}
</style>
</head>
<body>
<div id="inhoud"><script type="text/javascript" src="menuscript.js"></script></div>
</body>
</html>
<html> <head> <title></title> <style type="text/css"> body { background-color: #000000; text-align: center; margin: auto; } } #inhoud {width: 80%; height:500px; position: absolute; margin-left: -40%; margin-top: -250px; top: 50%; left: 50%; background-color: #ffffff } </style> </head> <body> <div id="inhoud"><script type="text/javascript" src="menuscript.js"></script></div> </body> </html>
|