这是我的代码
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style type="text/css">
#image_container
{
position:absolute;
top:100px;
left:0px;
height:420px;
}
.folder_image
{
background:url(folder.png) top no-repeat;
width:679px;
height:420px;
top:0px;
left:0px;
position:relative;
float:left;
margin-right:50px;
}
</style>
</head>
<body>
<div id="overflow_container">
<div id="image_container">
<div class="folder_image"></div>
<div class="folder_image"></div>
</div>
</div>
</body>
</html>
这就是我想要实现的目标:当我添加新divs
的类folder_image
时,div 应该水平相邻放置。我知道这可以通过设置父容器的宽度来完成,#image_container
在我的情况下,但是我如何在不设置width
of 的情况下做到这一点#image_container
提前致谢。