div样式问题

怎么让几个div并排显示呢?

哈尼露易丝
浏览 1230回答 2
2回答

慕莱坞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>望楼主采纳!

echo_kinchao

div都给inline-block就可以了
打开App,查看更多内容
随时随地看视频慕课网APP