vote up 2 vote down star
1

I'm looking for a source/spec that can tell me what CSS properties can applied to which HTML elements. For instance, the css property; "overflow". I know I can apply this to div, p, textarea but what other elements can I apply this too? Is there a spec somewhere I can reference?

flag

71% accept rate

5 Answers

vote up 3 vote down check

This would be the summary you are looking for. Taken directly from the W3.org website.

link|flag
vote up 0 vote down

pffft, you're all liars, there's only one property that can be applied to one element.

h1 { blink: fast; }

link|flag
vote up 0 vote down

Any CSS property can be applied to any HTML element; they don't restrict each other.

However, as Aron Rotteveel mentioned, the element will have to be either a replaced element (like img), or specified to be block-level. That mean that the following is perfectly fine CSS:

strong { display: block; height: 5em; width: 5em; overflow: scroll; }
link|flag
vote up 0 vote down

You could always use the official spec. The answer to your particular question is here.

link|flag
vote up 6 vote down

See http://www.w3.org/TR/CSS2/ and http://www.w3.org/TR/CSS/.

For example, regarding your question about the overflow property, see:

http://www.w3.org/TR/CSS2/visufx.html#overflow-clipping, stating:

'overflow'
    Value:          visible | hidden | scroll | auto | inherit
    Initial:        visible
    Applies to:     block-level and replaced elements
    Inherited:      no
    Percentages:    N/A
    Media:          visual
link|flag
While technically correct, I think the OP is looking for more of a simple lookup table for quicker reference. – Joel Coehoorn Feb 9 at 16:24
I must admit I'd love to see that too :) He specifically asked for a spec he could reference, though. – Aron Rotteveel Feb 9 at 16:28
@Joel isn't technically correct, the best kind of correct :P – Ólafur Waage Feb 9 at 16:34

Your Answer

Get an OpenID
or

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