Are "CSS Shorthand" not good in team development?
When multiple person work on same project . any person can have different level knowledge of CSS so some people can be confused with shorthand when they need any changes in css.
For example:
Should i avoid this
font: 1em/1.5em bold italic serif
and use this
font-size: 1em;
line-height: 1.5em;
font-weight: bold;
font-style: italic;
font-family: serif
in team development? and Which shorthands are other CSS shorthand are not good to use for readability and which are good?