💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
inline 元素用`text-align: center`;即可,如下: ~~~ .container { text-align: center; } ~~~ block 元素可使用`margin: auto;`,PC 时代的很多网站都这么搞。 ~~~ .container { text-align: center; } .item { width: 1000px; margin: auto; } ~~~ 绝对定位元素可结合`left`和`margin`实现,但是必须知道宽度。 ~~~ .container { position: relative; width: 500px; } .item { width: 300px; height: 100px; position: absolute; left: 50%; margin: -150px; } ~~~