W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> * { box-sizing: border-box; } .img-container { float: left; width: 33.33%; padding: 5px; } .clearfix::after { content: ""; clear: both; display: table; } </style> </head> <body> <h1>并排的图像</h1> <p>并排浮动图像:</p> <div class="clearfix"> <div class="img-container"> <img src="/i/photo/tulip.jpg" alt="Tulip" style="width:100%"> </div> <div class="img-container"> <img src="/i/photo/tulip-2.jpg" alt="Tulip" style="width:100%"> </div> <div class="img-container"> <img src="/i/photo/flower-4.jpg" alt="Flower" style="width:100%"> </div> </div> <p>请注意,我们还用了 clearfix hack 来处理布局流,并添加了 box-sizing 属性以确保图像容器不会由于额外的内边距(填充)而损坏。请尝试删除此代码以查看效果。</p> </body> </html>