有什么方法可以将最新的 css 属性用于该浏览器不支持的其他浏览器

Is there any way to use latest css properties to other browser that not supported to that browser

我想使用 Internet Explorer 11 不支持的那些属性,如何以任何方式使用它,例如 javascript 库或任何其他解决此问题的方法

您将不得不进行一些研究,google polyfills or shims 对于您的目标浏览器不支持的每个 属性。

互联网上有常见解决方案列表 (Example on GitHub)。

这里,例如,object-fit 的旧 IE 版本的 polyfill:
https://github.com/fregante/object-fit-images

在 Whosebug 上提供链接不是好的做法 - 因为链接很快就会过时 - 但我想提供示例以说明要搜索的内容。