多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
~~~ <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> ~~~