企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
~~~ <title>Document</title> <style> .parent{ width:400px; height:400px; background: red; position: relative; } .child{ position: absolute; width:100px; height:100px; background: yellow; /* left:50%; margin-left:-50px; top:50%; margin-top: -50px; */ margin:auto; left:0;right:0;bottom:0;top:0; } </style> </head> <body> <div class="parent"> <div class="child"> </div> </div> </body> ~~~