我正在尝试制作一个 UL 或 DIV,其中每个列表项/子 div 都是全屏的(100% 宽度 100% 高度)并向左浮动,所以我可以水平滚动它们,知道我该怎么做吗?这是我的代码,但它没有像我想象的那样工作
HTML:
<html>
<body>
<div id="site-holder">
<div class="toronto-full">
TESTING
</div>
<div class="montreal-full">
TESTING
</div>
</div>
</body>
</html>
CSS:
html { width:150%; height:100%; margin:0; padding:0; }
body { width:150%; height:100%; margin:0; padding:0; }
#site-holder { width:100%; height:100%; margin:0; padding:0; float:left; }
.toronto-full {background-color:green; width:50%; height:100%; float:left; }
.montreal-full {background-color:red; width:50%; height:100%; float:left; }
有任何想法吗?