firefox、Opera不支持backgroundPosition拆分为backgroundPositionX和backgroundPositionY

徐飞龙
2023-12-01

firefox、Opera不支持backgroundPosition拆分为backgroundPositionX和backgroundPositionY,CSS和JS中都不允许拆分
CSS:
比如现在是:

background-position-x :20px;
background-position-y :30px;

需要改成

background-position:20px 30px;

JS
现在是

div.style.backgroundPositionX = '20px';
div.style.backgroundPositionY = '30px';

要改成

div.style.backgroundPosition= '20px 30px';
 类似资料: