<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>使容器变为弹性容器</title> <style type="text/css"> .con { display: flex; /* 使容器变为弹性容器 */ } </style> </head> <body> <!-- 容器 项目 --> <div class="con"> <p>你好p标签</p> <p>你好h3标签</p> <div class=""> 00000 <p>1111</p> </div> </div> </body> </html>