centrering af div med float:left
Jeg vil meget gerne kunne centrere de tre div i den omkransede div. Er det muligt?Mvh
Stig
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Float test</title>
<style type="text/css">
div.center {
border:1px solid cyan;
width:600px;
}
div.inner {
float:left;
width:100px;
}
.magenta { background:magenta }
.yellow { background:yellow }
.magenta { background:magenta }
</style>
</head>
<body>
<div class="center">
<div class="inner magenta">thumbnail 1</div>
<div class="inner yellow">thumbnail 2</div>
<div class="inner magenta">thumbnail 3</div>
</div>
</body>
</html>