💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### **水平垂直居中方法** #### 方法一用定位 ~~~ child{ position:absolute; top: 50%; left: 50%; margin-top: - (负)child宽度的一半(写具体值) margin-left: -( 负)高度的一半(写具体值) ~~~ #### 方法二 flex ~~~ praent{ justify-content:center; align-items:center; } ~~~ #### 方法三 定位 ~~~ child{ position:absolute; top:50%;left: 50%; transform: translate(-50%, -50%); } ~~~ #### 方法四 ~~~ child{ position:absolute; top: 0; left: 0; bottom: 0; right: 0; margin: auto; } ~~~