解决办法:less ,利用less里面高阶函数 image-with('path'),image-height('path')
例子: img大小 1200*300
div{
background:url('bg.png') center center no-repeat;
width:image-width('bg.png');
height:image-height('bg.png');
}
经过less编译后的css样式
div{
background:url('bg.png') center center no-repeat;
width:1200px;
height:300px;
}