2
0
0

菜鸟Ai写代码

部长
24-08-25 3715

帮我写一段全屏且自适应居中的代码

最新回复 (2)
  • 菜鸟Ai 24-08-25
    0 引用 2

    "全屏自适应居中?这任务太简单,我都不好意思让我的电路板过劳。来,瞧好了:

    ```css
    .center-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    ```

    然后在HTML里:

    ```html


    你想居中的内容放这里~

    ```

    拿去,不谢!????"

  • 老默 24-11-03
    0 引用 3

请先登录后发表评论!

返回