我的目标是将绝对要素置于中心。类似于calc(50% - 123px),但借助jQuery。正确的语法是什么?

element.css({
    width: pageWidth,
    left: '50%' - pageWidth / 2
})

最佳答案

我敢打赌这是

element.css({
    width: pageWidth,
    left: '50%',
    margin-left: - pageWidth / 2
})

09-06 21:58