vote up 0 vote down star
1

some that i can think of are

font: bold 20px Verdana, sans-serif /* one line for variant, size, and family */

color: #336 /* short color code */

height: 0 /* no need to specify unit when 0 */

border: 0 /* same effect as border: none but shorter */

background: #ffc /* no need to use background-color if all is wanted is color */

padding: 0; border: 0; margin: 0 /* to show only content but nothing else */

border: 1px dashed #ff0 /* thickness, style, and color */

margin: 0 0.5em /* specify top, bottom, left, right margin */

flag

25% accept rate
shorthands can be great, but watch out, they will overwrite all of the applicable properties even if you don't specify them. For example: "border: solid 1px" will also reset "border-color" even though you didn't mention it. – TM May 13 at 4:12

4 Answers

vote up 2 vote down
 1. background: #fff url(image.png) no-repeat 20px 100px fixed;
 2. ul { list-style: decimal-leading-zero inside; }

Comma separated declarations

  1. h1, h2, h3, h4, h5, h6 { font-family:Helvetica, Verdana, sans-serif; }

First-child selectors

 1. .footer em:first-child { color:#ccc; }

CSS3 features

Rounded box with a radius

  1. .rounded_corner { -moz-border-radius:10px; -webkit-border-radius:10px; width:400px; height:100px; background-color:#000; }

Shadow effect

.shadow { width:400px; height:200px; background-color:#000; -webkit-box-shadow: 5px 5px 2px #ccc; }

link|flag
Neat stuff, but only the first two are actually shorthands. – TM May 13 at 4:19
background is my favorite, so I second it – SeasonedCoder May 13 at 4:24
vote up 3 vote down

Dustin Diaz has an excellent CSS shorthand guide.

link|flag
Excellent link, especially since he points out the 'default value' pitfall that comes with using shorthands. – TM May 13 at 4:16
The link is awesome! – SeasonedCoder May 13 at 4:25
vote up 0 vote down

You can also specify the line height with the font property

font: bold 20px/1em Verdana, sans-serif /* one line for variant, size, and family */

Where 1em is the line height

link|flag
vote up 0 vote down

Outline's another one:

outline:3px dotted gray;

list-style supports images, too:

list-style:square inside url(image.gif);

Kinda redundant, but here's another article explaining them all:

http://www.456bereastreet.com/archive/200502/efficient_css_with_shorthand_properties/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.