csdiv标签里面的img标签的图片在任意分辨率下居中显示,两边多余的隐藏掉

/*这样的方法可以让img标签的图片任意分辨率下居中显示*/
.other-banner{width:100%;height:600px;overflow: hidden;position: relative}
.other-banner img{width:auto;height:600px;margin: 0 50%;transform: translateX(-50%);}