Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Full CSS property table [closed]

Tags:

css

w3c

Is there a full CSS property table/list? I need a compact list like this: CSS Properties Index. Is there a W3C one? The one I wrote is good, but for each property I need all possible values like line-stacking-strategy.

like image 960
Marco Avatar asked May 31 '11 11:05

Marco


2 Answers

Take a look at this property index.


CSS 3 properties are chunked into several modules:

  • http://www.w3.org/TR/css3-ui/#property
  • http://www.w3.org/TR/css3-2d-transforms/#property-index
  • http://www.w3.org/TR/css3-transitions/#property-index
  • http://www.w3.org/TR/css3-fonts/#property-index
  • http://www.w3.org/TR/css3-text/#appendix-f-full-property-index
  • http://www.w3.org/TR/css3-animations/#property-index
  • http://www.w3.org/TR/css3-color/#property
like image 121
Daniel O'Hara Avatar answered Oct 13 '22 09:10

Daniel O'Hara


I wish there was a live property list on W3C, or better yet, a an up-to-date API that spits out json. So far I've been semi-successful scraping from these pages:

  • animations
  • box
  • fonts
  • fragmentation
  • generated content
  • hyperlinks
  • multi-column layout
  • positioning
  • speech
  • transforms
  • transitions
  • user interface
  • device viewport
  • flexbox
  • grid-layout
  • lists
  • ruby
  • text
  • template layout
like image 29
higginsrob Avatar answered Oct 13 '22 11:10

higginsrob