0

我的目标是使绝对元素居中。喜欢calc(50% - 123px),但在 jQuery 的帮助下。它的正确语法是什么?

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

1 回答 1

0

我敢打赌就是这个

element.css({
    width: pageWidth,
    left: '50%',
    margin-left: - pageWidth / 2
})
于 2015-03-03T18:12:18.360 回答