css 与“位置:绝对”[副本]

1u4esq0p  于 2022-12-05  发布在  其他
关注(0)|答案(1)|浏览(313)

此问题在此处已有答案

How to center a "position: absolute" element(31个答案)
How can I horizontally center an element?(132个答案)
How can I center an absolutely positioned element in a div?(37个答案)
昨天关门了

我想创建时钟使用艺术。但当我覆盖和对齐中心图像使用位置:绝对对齐和文本对齐:中心,但它只是图像的中心左,而不是图像的中心。(感谢阅读,我很抱歉我的糟糕的英语)

ippsafx7

ippsafx71#

也许你应该试试:

#clock, #minus, #second, #time{
position:absolute;
left: 0;
right: 0;
margin: auto;
text-align: center;
}

相关问题