慕莱坞9220042
你好,给所有的div都加上 float:left; 样式就可以了,例子:<html>
<head>
<style type="text/css">
.divClass{
float:left;
}
</style>
</head>
<body>
<div style="width:100px;height:100px;background-color:blue;" class="divClass">div1</div>
<div style="width:100px;height:100px;background-color:red;" class="divClass">div1</div>
<div style="width:100px;height:100px;background-color:gray;" class="divClass">div1</div>
</body>
</html>望楼主采纳!