Came across display:-ms-grid; property. What is the significance of the -ms.
display: -ms-grid;
Came across display:-ms-grid; property. What is the significance of the -ms.
display: -ms-grid;
-ms-
is a vendor prefix for browsers by Microsoft (e.g, Internet Explorer and Microsoft Edge), just like -moz-
in Firefox or -o-
in Opera.
Browser vendors sometimes add prefixes to experimental or nonstandard CSS properties and JavaScript APIs, so developers can experiment with new ideas while—in theory—preventing their experiments from being relied upon and then breaking web developers' code during the standardization process. Developers should wait to include the unprefixed property until browser behavior is standardized.
— source