<html>
<head>
<style type="text/css">
.parent
{
width: auto;
height: auto;
min-width: 600px;
min-height: 600px;
border: 1px dashed #f00;
padding: 5px;
overflow: auto;
position: absolute;
}
.child
{
width : 100px;
height: 500px;
border: 1px solid #0f0;
float: left;
position: relative;
}
.second_child
{
width : 1800px;
height: 100px;
border: 1px solid black;
float: left;
position:relative;
}
</script>
</style>
</head>
<body style="overflow:auto">
<div class="parent">
<div class="child">
</div>
<div class="second_child">
</div>
</div>
</body>
</html>
我想把两个盒子放在一个更大的盒子里。我把它放在一起,如果我将第二个框的宽度扩大到大于窗口的宽度,它现在可以正常工作了。例如,您的屏幕为 1024x720,第二个框的宽度为 1800 像素,第二个框重新定位在第一个框下方。我只是好奇它为什么这样做而不是放置滚动条并保持对象的位置。
我是否定位错误,或者我是否以错误的方式思考这个问题。我几乎很想用表格作为布局来尝试这个,但这对我来说似乎很反直觉。