`content: ''` vs `content: none`

Viewed 34419

I was reading through Eric Meyer's CSS reset and saw this:

blockquote:before, blockquote:after,
q:before, q:after {
    /* ? */ content: '';
    /* ? */ content: none;
}

I assume that some browsers support content: '' and some content: none, is this the case? And which browsers support which?

1 Answers
Related