From: Pro PHP and jQuery:
■ Tip The values returned are CSS shorthand properties.3 An added bonus of jQuery is the ability to set CSS properties using CSS shorthand, which doesn't work using basic JavaScript.
From jQuery API Reference:
Shorthand CSS properties (e.g. margin, background, border) are not supported. For example, if you want to retrieve the rendered margin, use: $(elem).css('marginTop') and $(elem).css('marginRight'), and so on.
I'm confused, css shorthand can be set, but not read? Of course I'll simply use a stylesheet, but, the question is for academic edification.