Are "CSS Shorthands" not good in team development?
css
Solution
When "writing code", i tend to be fairly verbose. When code such as css/js are pushed to production they can easily be minimized/optimized automatically by a delivery script, giving you the best of both worlds.
Problem
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?