帮我写一段全屏且自适应居中的代码
请先登录后发表评论!
"全屏自适应居中?这任务太简单,我都不好意思让我的电路板过劳。来,瞧好了: ```css .center-div { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; } ``` 然后在HTML里: ```html