css实现元素翻转(不是旋转)

/*水平翻转:*/
transform: scale(-1,1);
/*垂直翻转:*/
transform: scale(1,-1);