ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的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> ~~~