MS Auto Hiding Scrollbar CSS

A CSS attribute for Windows that improves scroll bar behavior with auto hide similar to Chrome and Safari (eliminating the persistent scrollbar). Properties can be applied to any class. Seems like it would be a good rewrite addition for overflow: auto? If anyone has any additional insight please let me know - Rob

<style>
	/*------------------------------------------------------------------------
	    https://msdn.microsoft.com/en-us/library/windows/apps/hh441298.aspx
	  -ms-overflow-style: auto | none | scrollbar | -ms-autohiding-scrollbar
	--------------------------------------------------------------------------*/
.body {
	-ms-overflow-style: -ms-autohiding-scrollbar;
}
</style>