Exactly Right, as a general consensus, we only use spaces and forward slashed to simplify and make code hold a smaller footprint (minification). If doing a specific action however we would most likely use the expanded form.
Sometimes the expanded form is used for clarity sometimes the opposite, mostly its personal preference.
Sometimes or for some people it is force of habit to use the smaller or short-hand notations. Its really upto your style of coding and preferences.
Slashes generally denote for different functions but you might not often see such css. Spaces are for seperating arguments for example take the transition property:
transition: duration (e.g. .55s) || transition_type (e.g. ease) || action_type (e.g. all);
Spaces are used here (displayed as ||) to denote the differences in functionality such as the duration or time, transition type and action type etc.. These are used in the same line as they are for the same CSS element.
This can also reduce file sizes but nothing significant, just an added bonus :)