views:

21

answers:

3

It's there a place i can see wich attribute are w3c on all HTML Element, div,p,a,li,hr etc ...

I check on w3cshool but find nothing.

I need a list where they said someting like ... id : (div, a , hr , etc ...), class (div, a , hr , etc) ...

+3  A: 

Surely, the HTML specification (index of attributes) itself is a good place to start.

Bruno
+1  A: 

Just complementing the previous answer from Bruno. Follow HTML5 current working draft.

http://www.whatwg.org/specs/web-apps/current-work/multipage/

Dave
A: 

Here's the list of html4 elements on the w3c site: http://www.w3.org/TR/html4/index/elements.html

You might also want the html5 version: http://dev.w3.org/html5/html-author/#index-of-elements It also has a nice html4/html5 comparison.

Julian