placering af bokse
Hvis jeg nu har noget i den her retning, hvordan får jeg så de 2 bokse placeret uafhængigt af hinanden på skærmen, og hvordan bestemmer jeg havd der skal overlabbe hvad?<html>
<head>
<style type="text/css">
body {
background-color: #999999;
margin-top: 0px;
margin-left: 0px;
}
.boks1{
background-color: #ffffff;
margin-top: 50px;
margin-left: 150px;
height:150px;
width:150px;
}
.boks2{
background-color: #ffffff;
margin-top:50px;
margin-left:100px;
height:100px;
width:100px;
}
</style>
</head>
<body>
<span class="boks1">boks1</span>
<span class="boks2">boks2</span>
</body>
</html>
