多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 1. ~~~ .parent { position: relative; width: 300px; height: 300px; background-color: red; } .child { position: absolute; width: 100px; height: 100px; background-color: yellow; top: 50%; left: 50%; margin-top: -50px; margin-left: -50px; } ~~~ ## 2. ~~~ .parent { position: relative; width: 300px; height: 300px; background-color: red; } .child { position: absolute; width: 100px; height: 100px; background-color: yellow; margin: auto; top: 0; right: 0; bottom: 0; left: 0; } ~~~