In CSS what is the difference between webkit-sticky, moz-sticky, ms-sticky, o-sticky, sticky?

In CSS, the position: sticky; property is used to create elements that are “sticky” or “fixed” within their containing element based on the user’s scroll position. This behavior is commonly used for creating sticky headers, sidebars, or navigation menus. However, different browsers might require vendor-specific […]