niente..
qusto è quello che ho modificato..
HTML:
codice:
<!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>
<link href="style.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div id="cont_shadow_top">
<div class="left_cont_shadow_top">
L
</div>
<div class="right_cont_shadow_top">
R
</div>
<div class="center_cont_shadow_top">
C
</div>
</div>
</body>
</html>
CSS
codice:
#cont_shadow_top{
overflow:auto;
width:;
height:21px;
}
.left_cont_shadow_top{
float:left;
width:60px;
height:100%;
background:#3F0;
}
.right_cont_shadow_top{
float:right;
width:60px;
height:100%;
background:#900;
}
.center_cont_shadow_top{
width:;
height:100%;
margin-left: auto;
margin-right: auto;
background:#CF0;
}
il div centrale si sottopone ai due div laterali..
non cè un modo per non far sottoporre qualcosa a un div?