index.html 79.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<html lang=en>
 <head>
  <title>Cascading Style Sheets (CSS) Snapshot 2010</title>
  <link href=default.css rel=stylesheet type="text/css">
  <link href="http://www.w3.org/StyleSheets/TR/W3C-WG-NOTE.css"
  rel=stylesheet type="text/css">

 <body>
  <div class=head> <!--begin-logo-->
   <p><a href="http://www.w3.org/"><img alt=W3C height=48
    src="http://www.w3.org/Icons/w3c_home" width=72></a> <!--end-logo-->

   <h1>Cascading Style Sheets (CSS) Snapshot 2010</h1>

   <h2 class="no-num no-toc" id=longstatus-date>W3C Working Group Note 12 May
    2011</h2>

   <dl>
    <dt>This version:

    <dd><a
     href="http://www.w3.org/TR/2011/NOTE-css-2010-20110512/">http://www.w3.org/TR/2011/NOTE-css-2010-20110512/</a></dd>
    <!-- <dd><a href="http://dev.w3.org/csswg/css-2010/">http://dev.w3.org/csswg/css-2010/</a> -->

    <dt>Latest version:

    <dd><a
     href="http://www.w3.org/TR/css-2010/">http://www.w3.org/TR/css-2010/</a>

    <dt>Previous versions:

    <dd><a
     href="http://www.w3.org/TR/2010/WD-css-2010-20101202/">http://www.w3.org/TR/2010/WD-css-2010-20101202/</a>     

    <dt>Editor:

    <dd><a href="http://fantasai.inkedblade.net/contact">Elika J. Etemad</a>
   </dl>
   <!--begin-copyright-->
   <p class=copyright><a
    href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
    rel=license>Copyright</a> &copy; 2011 <a
    href="http://www.w3.org/"><acronym title="World Wide Web
    Consortium">W3C</acronym></a><sup>&reg;</sup> (<a
    href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute
    of Technology">MIT</acronym></a>, <a href="http://www.ercim.eu/"><acronym
    title="European Research Consortium for Informatics and
    Mathematics">ERCIM</acronym></a>, <a
    href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a
    href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
    <a
    href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>
    and <a
    href="http://www.w3.org/Consortium/Legal/copyright-documents">document
    use</a> rules apply.</p>
   <!--end-copyright-->
   <hr title="Separator for header">
  </div>

  <h2 class="no-num no-toc" id=abstract>Abstract</h2>

  <p>This document collects together into one definition all the specs that
   together form the current state of Cascading Style Sheets (CSS) as of
   2010. The primary audience is CSS implementors, not CSS authors, as this
   definition includes modules by specification stability, not Web browser
   adoption rate.

  <h2 class="no-num no-toc" id=status>Status of this document</h2>
  <!--begin-status-->

  <p><em>This section describes the status of this document at the time of
   its publication. Other documents may supersede this document. A list of
   current W3C publications and the latest revision of this technical report
   can be found in the <a href="http://www.w3.org/TR/">W3C technical reports
   index at http://www.w3.org/TR/.</a></em>

  <p>Publication as a Working Group Note does not imply endorsement by the
   W3C Membership. This is a draft document and may be updated, replaced or
   obsoleted by other documents at any time. It is inappropriate to cite this
   document as other than work in progress.

  <p>The document was produced by the <a
   href="http://www.w3.org/Style/CSS/members">CSS Working Group</a> (part of
   the <a href="http://www.w3.org/Style/CSS">Style Activity</a>).

  <p> This document was produced by a group operating under the <a
   href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February
   2004 W3C Patent Policy</a>. W3C maintains a <a
   href="http://www.w3.org/2004/01/pp-impl/32061/status"
   rel=disclosure>public list of any patent disclosures</a> made in
   connection with the deliverables of the group; that page also includes
   instructions for disclosing a patent. An individual who has actual
   knowledge of a patent which the individual believes contains <a
   href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential
   Claim(s)</a> must disclose the information in accordance with <a
   href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section
   6 of the W3C Patent Policy</a>.

  <p>The (<a
   href="http://lists.w3.org/Archives/Public/www-style/">archived</a>) public
   mailing list <a
   href="mailto:www-style@w3.org?Subject=%5Bcss-2010%5D%20PUT%20SUBJECT%20HERE">
   www-style@w3.org</a> (see <a
   href="http://www.w3.org/Mail/Request">instructions</a>) is preferred for
   discussion of this document. When sending e-mail, please put the text
   &#8220;css-2010&#8221; in the subject, preferably like this:
   &#8220;[<!---->css-2010<!---->] <em>&hellip;summary of
   comment&hellip;</em>&#8221;</p>
  <!--end-status-->

  <p>This document represents the state of CSS as of 2010. The CSS Working
   Group does not expect any further changes to this document: new snapshots
   will be published at <a
   href="http://www.w3.org/TR/CSS/">http://www.w3.org/TR/CSS/</a> as CSS
   advances.

  <h2 class="no-num no-toc" id=contents>Table of contents</h2>
  <!--begin-toc-->

  <ul class=toc>
   <li><a href="#intro"><span class=secno>1. </span>Introduction</a>
    <ul class=toc>
     <li><a href="#w3c-process"><span class=secno>1.1. </span>The W3C Process
      and CSS</a>
    </ul>

   <li><a href="#css-levels"><span class=secno>2. </span>CSS Levels</a>
    <ul class=toc>
     <li><a href="#css1"><span class=secno>2.1. </span>CSS Level 1</a>

     <li><a href="#css2"><span class=secno>2.2. </span>CSS Level 2</a>

     <li><a href="#css3"><span class=secno>2.3. </span>CSS Level 3</a>
    </ul>

   <li><a href="#css"><span class=secno>3. </span>Cascading Style Sheets
    Definition</a>
    <ul class=toc>
     <li><a href="#partial"><span class=secno>3.1. </span>Partial
      Implementations</a>

     <li><a href="#profiles"><span class=secno>3.2. </span>CSS Profiles</a>

     <li><a href="#experimental"><span class=secno>3.3. </span>Experimental
      Implementations</a>

     <li><a href="#testing"><span class=secno>3.4. </span>Non-Experimental
      Implementations</a>
    </ul>

   <li><a href="#indices"><span class=secno>4. </span>Indices</a>
    <ul class=toc>
     <li><a href="#properties"><span class=secno>4.1. </span>Property
      Index</a>

     <li><a href="#selectors"><span class=secno>4.2. </span>Selector
      Index</a>

     <li><a href="#at-rules"><span class=secno>4.3. </span>At-Rule Index</a>
    </ul>
  </ul>
  <!--end-toc-->

  <h2 id=intro><span class=secno>1. </span>Introduction</h2>

  <p>When the first CSS specification was published, all of CSS was contained
   in one document that defined CSS Level 1. CSS Level 2 was defined also by
   a single, multi-chapter document. However for CSS beyond Level 2, the CSS
   Working Group chose to adopt a modular approach, where each module defines
   a part of CSS, rather than to define a single monolithic specification.
   This breaks the specification into more manageable chunks and allows more
   immediate, incremental improvement to CSS.

  <p>Since different CSS modules are at different levels of stability, the
   CSS Working Group has chosen to publish this profile to define the current
   scope and state of Cascading Style Sheets as of late 2010. This profile
   includes only specifications that we consider stable <em>and</em> for
   which we have enough implementation experience that we are sure of that
   stability.

  <p>Note that this is not intended to be a CSS Desktop Browser Profile:
   inclusion in this profile is based on feature stability only and not on
   expected use or Web browser adoption. This profile defines CSS in its most
   complete form.

  <p>Note also that although we don't anticipate significant changes to the
   specifications that form this snapshot, their inclusion does are not mean
   they are frozen. The Working Group will continue to address problems as
   they are found in these specs. Implementers should monitor <a
   href="http://lists.w3.org/Archives/Public/www-style/">www-style</a> and/or
   the <a href="http://www.w3.org/blog/CSS">CSS Working Group Blog</a> for
   any resulting changes, corrections, or clarifications.

  <h3 id=w3c-process><span class=secno>1.1. </span>The W3C Process and CSS</h3>

  <p><em>This section is non-normative.</em>

  <p>In the <a href="http://www.w3.org/2005/10/Process-20051014/">W3C
   Process</a>, a Recommendation-track document passes through five levels of
   stability, summarized below:

  <dl style="list-style-type: decimal">
   <dt>Working Draft (WD)

   <dd>Published during the process of drafting the specification, the
    purpose of a public Working Draft is to create a snapshot of the
    specification's current state and to solicit input from the W3C and the
    public. The document is known to be unstable, and is often incomplete.

   <dt>Last Call Working Draft (LC or LCWD)

   <dd>By publishing a Last Call Working Draft, a working group is expressing
    that they consider the spec to be complete and all issues to be resolved.
    Publishing a Last Call Working Draft announces that this specification
    will move toward Candidate Recommendation unless significant issues are
    brought up. The Last Call period is a last chance for others to submit
    issues before the transition to CR.

   <dt>Candidate Recommendation (CR)

   <dd>By publishing a Candidate Recommendation, a working group is
    expressing that have resolved all known issues and they believe the spec
    is ready for implementation.

   <dt>Proposed Recommendation (PR)

   <dd>To exit CR and enter this stage, the spec needs a comprehensive test
    suite and implementation reports proving that every feature in the spec
    is interoperably implemented in at least two shipping implementations.
    Entering the Proposed Recommendation stage signals to the W3C that these
    requirements have been met. Once the W3C officially approves the
    specification, it becomes a Recommendation.

   <dt>Recommendation (REC)

   <dd>This is the final stage. At this point there should need to be no more
    changes.
  </dl>

  <p>In the CSSWG's experience, the recommendation track is not linear. The
   wider review triggered by an LCWD often results in at least another
   working draft, possibly several. More significantly, our experience is
   that many specs enter CR twice, because implementation testing often
   uncovers significant problems in the spec and thus pushes it back to
   working draft. Additionally, fixing even minor problems forces a CR to
   re-enter the Working Draft stage. As a result, although the CSSWG has a
   clear idea of the stability of the CSS specs, it is very difficult for
   someone outside the working group to come to that same understanding based
   on a specification's official status. The CSS Working Group's motivation
   for creating this document is thus to communicate to others our
   understanding of the state of CSS.

  <h2 id=css-levels><span class=secno>2. </span>CSS Levels</h2>

  <p>Cascading Style Sheets does not have versions in the traditional sense;
   instead it has <dfn id=levels>levels</dfn>. Each level of CSS builds on
   the previous, refining definitions and adding features. The feature set of
   each higher level is a superset of any lower level, and the behavior
   allowed for a given feature in a higher level is a subset of that allowed
   in the lower levels. A user agent conforming to a higher level of CSS is
   thus also conformant to all lower levels.

  <h3 id=css1><span class=secno>2.1. </span>CSS Level 1</h3>

  <p>The CSS Working Group considers the <a
   href="http://www.w3.org/TR/2008/REC-CSS1-20080411/">CSS1 specification</a>
   to be obsolete. <dfn id=css-level-1>CSS Level 1</dfn> is defined as all
   the features defined in the CSS1 specification (properties, values,
   at-rules, etc), but using the syntax and definitions in the <a
   href="http://www.w3.org/TR/CSS21/">CSS2.1 specification</a>. <a
   href="http://www.w3.org/TR/css-style-attr/">CSS Style Attributes</a>
   defines its inclusion in element-specific style attributes.

  <h3 id=css2><span class=secno>2.2. </span>CSS Level 2</h3>

  <p>Although the <a href="http://www.w3.org/TR/2008/REC-CSS2-20080411/">CSS2
   specification</a> is technically a W3C Recommendation, it passed into the
   Recommendation stage before the W3C had defined the Candidate
   Recommendation stage. Over time implementation experience and further
   review has brought to light many problems in the CSS2 specification, so
   instead of expanding an already <a
   href="http://www.w3.org/Style/css2-updates/REC-CSS2-19980512-errata.html">unwieldy
   errata list</a>, the CSS Working Group chose to define <cite>CSS Level 2
   Revision 1</cite> (CSS2.1). In case of any conflict between the two specs
   CSS2.1 contains the definitive definition.

  <p>Once CSS2.1 became Candidate Recommendation&#8212;effectively though not
   officially the same level of stability as CSS2&#8212;obsoleted the CSS2
   Recommendation. Features in CSS2 that were dropped from CSS2.1 should be
   considered to be at the Candidate Recommendation stage, but note that many
   of these have been or will be pulled into a CSS Level 3 working draft, in
   which case that specification will, once it reaches CR, obsolete the
   definitions in CSS2.

  <p>The <a href="http://www.w3.org/TR/CSS21/">CSS2.1 specification</a>
   defines <dfn id=css-level-2>CSS Level 2</dfn> and the <a
   href="http://www.w3.org/TR/css-style-attr/">CSS Style Attributes
   specification</a> defines its inclusion in element-specific style
   attributes.

  <h3 id=css3><span class=secno>2.3. </span>CSS Level 3</h3>

  <p><em>This section is non-normative.</em>

  <p>CSS Level 3 builds on CSS Level 2 module by module, using the CSS2.1
   specification as its core. Each module adds functionality and/or replaces
   part of the CSS2.1 specification. The CSS Working Group intends that the
   new CSS modules will not contradict the CSS2.1 specification: only that
   they will add functionality and refine definitions. As each module is
   completed, it will be plugged in to the existing system of CSS2.1 plus
   previously-completed modules.

  <p>From this level on modules are levelled independently: for example
   Selectors Level 4 may well be defined before CSS Line Module Level 3.

  <h2 id=css><span class=secno>3. </span>Cascading Style Sheets Definition</h2>

  <p>As of 2010, <dfn id=cascading-style-sheets-css>Cascading Style Sheets
   (CSS)</dfn> is defined by the following specifications.

  <ol>
   <li><a href="http://www.w3.org/TR/CSS21/">CSS Level 2 Revision 1</a>
    (including errata)

   <li><a href="http://www.w3.org/TR/css-style-attr/">CSS Style
    Attributes</a>

   <li><a href="http://www.w3.org/TR/css3-mediaqueries/">Media Queries Level
    3</a>

   <li><a href="http://www.w3.org/TR/css3-namespace/">CSS Namespaces</a>

   <li><a href="http://www.w3.org/TR/css3-selectors/">Selectors Level 3</a>

   <li><a href="http://www.w3.org/TR/css3-color/">CSS Color Level 3</a>
  </ol>

  <h3 id=partial><span class=secno>3.1. </span>Partial Implementations</h3>

  <p>So that authors can exploit the forward-compatible parsing rules to
   assign fallback values, CSS renderers <strong>must</strong> treat as
   invalid (and <a
   href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignore as
   appropriate</a>) any at-rules, properties, property values, keywords, and
   other syntactic constructs for which they have no usable level of support.
   In particular, user agents <strong>must not</strong> selectively ignore
   unsupported property values and honor supported values in a single
   multi-value property declaration: if any value is considered invalid (as
   unsupported values must be), CSS requires that the entire declaration be
   ignored.

  <h3 id=profiles><span class=secno>3.2. </span>CSS Profiles</h3>

  <p>Not all implementations will implement all functionality defined in CSS.
   For example, an implementation may choose to implement only the
   functionality required by a CSS Profile. Profiles define a subset of CSS
   considered fundamental for a specific class of CSS implementations. The
   W3C CSS Working Group defines the following CSS profiles:

  <ul>
   <li><a href="http://www.w3.org/TR/css-mobile/">CSS Mobile Profile 2.0</a>

   <li><a href="http://www.w3.org/TR/css-print/">CSS Print Profile 1.0</a>

   <li><a href="http://www.w3.org/TR/css-tv">CSS TV Profile 1.0</a>
  </ul>

  <h3 id=experimental><span class=secno>3.3. </span>Experimental
   Implementations</h3>

  <p>To avoid clashes with future CSS features, the CSS2.1 specification
   reserves a <a
   href="http://www.w3.org/TR/CSS21/syndata.html#vendor-keywords">prefixed
   syntax</a> for proprietary and experimental extensions to CSS.

  <p>Prior to a specification reaching the Candidate Recommendation stage in
   the W3C process, all implementations of a CSS feature are considered
   experimental. The CSS Working Group recommends that implementations use a
   vendor-prefixed syntax for such features, including those in W3C Working
   Drafts. This avoids incompatibilities with future changes in the draft.

  <p class=note>For legacy reasons, certain experimental CSS properties do
   not follow this prefixing convention. Two common examples are the
   &lsquo;<code class=property>word-wrap</code>&rsquo; and &lsquo;<code
   class=property>text-overflow</code>&rsquo; properties, which were
   introduced unprefixed by Microsoft Internet Explorer prior to the
   introduction of the vendor prefixing policy in CSS2.1 and were
   subsequently implemented unprefixed by other browsers, creating a
   dependency on the unprefixed names despite the lack of a W3C spec. Any
   other legacy exceptions should be made in consultation with the CSS
   Working Group.

  <h3 id=testing><span class=secno>3.4. </span>Non-Experimental
   Implementations</h3>

  <p>Once a specification reaches the Candidate Recommendation stage,
   non-experimental implementations are possible, and implementors should
   release an unprefixed implementation of any CR-level feature they can
   demonstrate to be correctly implemented according to spec.

  <p>To establish and maintain the interoperability of CSS across
   implementations, the CSS Working Group requests that non-experimental CSS
   renderers submit an implementation report (and, if necessary, the
   testcases used for that implementation report) to the W3C before releasing
   an unprefixed implementation of any CSS features. Testcases submitted to
   W3C are subject to review and correction by the CSS Working Group.

  <p>Further information on submitting testcases and implementation reports
   can be found from on the CSS Working Group's website at <a
   href="http://www.w3.org/Style/CSS/Test/">http://www.w3.org/Style/CSS/Test/</a>.
   Questions should be directed to the <a
   href="http://lists.w3.org/Archives/Public/public-css-testsuite">public-css-testsuite@w3.org</a>
   mailing list.

  <p>CSS2.1 implementations are encouraged, but not required, to submit an
   implementation report.

  <h2 id=indices><span class=secno>4. </span>Indices</h2>

  <p><em>These sections are non-normative.</em>

  <h3 id=properties><span class=secno>4.1. </span>Property Index</h3>

  <table class=proptable>
   <thead>
    <tr>
     <th>Name

     <th>Values

     <th>Initial value

     <th>Applies to

     <th>Inherited?

     <th>Percentages

     <th>Media

   <tbody>
    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-attachment"><code>background-attachment</code></a>
      

     <td>scroll | fixed | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>scroll

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-color"><code>background-color</code></a>
      

     <td><a
      href="http://www.w3.org/TR/css3-color/#colorunits">&lt;color&gt;</a> |
      <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>transparent

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-image"><code>background-image</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-uri">&lt;uri&gt;</a>
      | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-position"><code>background-position</code></a>
      

     <td>[ [ <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | left | center | right ] [ <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | top | center | bottom ]? ] | [ [ left | center | right ] || [ top |
      center | bottom ] ] | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>0% 0%

     <td>&nbsp;

     <td>no

     <td>refer to the size of the box itself

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-repeat"><code>background-repeat</code></a>
      

     <td>repeat | repeat-x | repeat-y | no-repeat | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>repeat

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background"><code>background</code></a>
      

     <td>[<a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-color">&lsquo;<code
      class=property>background-color</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-image">&lsquo;<code
      class=property>background-image</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-repeat">&lsquo;<code
      class=property>background-repeat</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-attachment">&lsquo;<code
      class=property>background-attachment</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-position"><code>background-position</code></a>]
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>&nbsp;

     <td>no

     <td>allowed on &lsquo;<code
      class=property>background-position</code>&rsquo;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/tables.html#propdef-border-collapse"><code>border-collapse</code></a>
      

     <td>collapse | separate | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>separate

     <td>&lsquo;<code class=property>table</code>&rsquo; and &lsquo;<code
      class=property>inline-table</code>&rsquo; elements

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-color"><code>border-color</code></a>
      

     <td>[ <a
      href="http://www.w3.org/TR/css3-color/#colorunits">&lt;color&gt;</a>
      ]{1,4} | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing"><code>border-spacing</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>?
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>0

     <td>&lsquo;<code class=property>table</code>&rsquo; and &lsquo;<code
      class=property>inline-table</code>&rsquo; elements&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-style"><code>border-style</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-style">&lt;border-style&gt;</a>{1,4}
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-top"><code>border-top</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-right"><code>border-right</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-bottom"><code>border-bottom</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-left"><code>border-left</code></a>
      

     <td>[ <a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-width">&lt;border-width&gt;</a>
      || <a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-style">&lt;border-style&gt;</a>
      || <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-top-color"><code>border-top-color</code></a>
      ] | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-top-color"><code>border-top-color</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-right-color"><code>border-right-color</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-color"><code>border-bottom-color</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-left-color"><code>border-left-color</code></a>
      

     <td><a
      href="http://www.w3.org/TR/css3-color/#colorunits">&lt;color&gt;</a> |
      <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>the value of the &lsquo;<code class=property>color</code>&rsquo;
      property

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-top-style"><code>border-top-style</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-right-style"><code>border-right-style</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-style"><code>border-bottom-style</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-left-style"><code>border-left-style</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-style">&lt;border-style&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-top-width"><code>border-top-width</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-right-width"><code>border-right-width</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-bottom-width"><code>border-bottom-width</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-left-width"><code>border-left-width</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-width">&lt;border-width&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>medium

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-width"><code>border-width</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-width">&lt;border-width&gt;</a>{1,4}
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border"><code>border</code></a>
      

     <td>[ <a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-width">&lt;border-width&gt;</a>
      || <a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-style">&lt;border-style&gt;</a>
      || <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-border-top-color"><code>border-top-color</code></a>
      ] | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-bottom"><code>bottom</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>positioned elements

     <td>no

     <td>refer to height of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/tables.html#propdef-caption-side"><code>caption-side</code></a>
      

     <td>top | bottom | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>top

     <td>&lsquo;<code class=property>table-caption</code>&rsquo; elements

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-clear"><code>clear</code></a>
      

     <td>none | left | right | both | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>block-level elements

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visufx.html#propdef-clip"><code>clip</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/visufx.html#value-def-shape">&lt;shape&gt;</a>
      | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>absolutely positioned elements

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/css3-color/#foreground"><code>color</code></a>
      

     <td><a
      href="http://www.w3.org/TR/css3-color/#colorunits">&lt;color&gt;</a> |
      <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>depends on user agent

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-content"><code>content</code></a>
      

     <td>normal | none | [ <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-string">&lt;string&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-uri">&lt;uri&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-counter">&lt;counter&gt;</a>
      | attr(<a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">&lt;identifier&gt;</a>)
      | open-quote | close-quote | no-open-quote | no-close-quote ]+ | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>:before and :after pseudo-elements

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#all-media-group">all</a>

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment"><code>counter-increment</code></a>
      

     <td>[ <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">&lt;identifier&gt;</a>
      <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-integer">&lt;integer&gt;</a>?
      ]+ | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#all-media-group">all</a>

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset"><code>counter-reset</code></a>
      

     <td>[ <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">&lt;identifier&gt;</a>
      <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-integer">&lt;integer&gt;</a>?
      ]+ | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#all-media-group">all</a>

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/ui.html#propdef-cursor"><code>cursor</code></a>
      

     <td>[ [<a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-uri">&lt;uri&gt;</a>
      ,]* [ auto | crosshair | default | pointer | move | e-resize |
      ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize |
      w-resize | text | wait | help | progress ] ] | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#interactive-media-group">interactive</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-direction"><code>direction</code></a>
      

     <td>ltr | rtl | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>ltr

     <td>all elements, but see prose

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-display"><code>display</code></a>
      

     <td>inline | block | list-item | inline-block | table | inline-table |
      table-row-group | table-header-group | table-footer-group | table-row |
      table-column-group | table-column | table-cell | table-caption | none |
      <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>inline

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#all-media-group">all</a>

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/tables.html#propdef-empty-cells"><code>empty-cells</code></a>
      

     <td>show | hide | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>show

     <td>&lsquo;<code class=property>table-cell</code>&rsquo; elements

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-float"><code>float</code></a>
      

     <td>left | right | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>all, but see <a
      href="http://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo">9.7</a>

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-family"><code>font-family</code></a>
      

     <td>[ [ <a
      href="http://www.w3.org/TR/CSS21/fonts.html#value-def-family-name">&lt;family-name&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/fonts.html#value-def-generic-family">&lt;generic-family&gt;</a>
      ] [, <a
      href="http://www.w3.org/TR/CSS21/fonts.html#value-def-family-name">&lt;family-name&gt;</a>|
      <a
      href="http://www.w3.org/TR/CSS21/fonts.html#value-def-generic-family">&lt;generic-family&gt;</a>
      ]* ] | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>depends on user agent

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-size"><code>font-size</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/fonts.html#value-def-absolute-size">&lt;absolute-size&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/fonts.html#value-def-relative-size">&lt;relative-size&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>medium

     <td>&nbsp;

     <td>yes

     <td>refer to inherited font size

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-style"><code>font-style</code></a>
      

     <td>normal | italic | oblique | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-variant"><code>font-variant</code></a>
      

     <td>normal | small-caps | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight"><code>font-weight</code></a>
      

     <td>normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600
      | 700 | 800 | 900 | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font"><code>font</code></a>
      

     <td>[ [ <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-style">&lsquo;<code
      class=property>font-style</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-variant">&lsquo;<code
      class=property>font-variant</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight">&lsquo;<code
      class=property>font-weight</code>&rsquo;</a> ]? <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-size">&lsquo;<code
      class=property>font-size</code>&rsquo;</a> [ / <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height">&lsquo;<code
      class=property>line-height</code>&rsquo;</a> ]? <a
      href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-family"><code>font-family</code></a>
      ] | caption | icon | menu | message-box | small-caption | status-bar |
      <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>&nbsp;

     <td>yes

     <td>see individual properties

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-height"><code>height</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>all elements but non-replaced inline elements, table columns, and
      column groups

     <td>no

     <td>see prose

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-left"><code>left</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>positioned elements

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/text.html#propdef-letter-spacing"><code>letter-spacing</code></a>
      

     <td>normal | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height"><code>line-height</code></a>
      

     <td>normal | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-number">&lt;number&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>&nbsp;

     <td>yes

     <td>refer to the font size of the element itself

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image"><code>list-style-image</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-uri">&lt;uri&gt;</a>
      | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>elements with &lsquo;<code class=css>display:
      list-item</code>&rsquo;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position"><code>list-style-position</code></a>
      

     <td>inside | outside | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>outside

     <td>elements with &lsquo;<code class=css>display:
      list-item</code>&rsquo;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type"><code>list-style-type</code></a>
      

     <td>disc | circle | square | decimal | decimal-leading-zero |
      lower-roman | upper-roman | lower-greek | lower-latin | upper-latin |
      armenian | georgian | lower-alpha | upper-alpha | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>disc

     <td>elements with &lsquo;<code class=css>display:
      list-item</code>&rsquo;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style"><code>list-style</code></a>
      

     <td>[ <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type">&lsquo;<code
      class=property>list-style-type</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position">&lsquo;<code
      class=property>list-style-position</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image"><code>list-style-image</code></a>
      ] | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>elements with &lsquo;<code class=css>display:
      list-item</code>&rsquo;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-margin-right"><code>margin-right</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-margin-left"><code>margin-left</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-margin-width">&lt;margin-width&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>0

     <td>all elements except elements with table display types other than
      table-caption, table and inline-table

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-margin-top"><code>margin-top</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-margin-bottom"><code>margin-bottom</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-margin-width">&lt;margin-width&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>0

     <td>all elements except elements with table display types other than
      table-caption, table and inline-table

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-margin"><code>margin</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-margin-width">&lt;margin-width&gt;</a>{1,4}
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>all elements except elements with table display types other than
      table-caption, table and inline-table

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height"><code>max-height</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>all elements but non-replaced inline elements, table columns, and
      column groups

     <td>no

     <td>see prose

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width"><code>max-width</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>all elements but non-replaced inline elements, table rows, and row
      groups

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-min-height"><code>min-height</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>0

     <td>all elements but non-replaced inline elements, table columns, and
      column groups

     <td>no

     <td>see prose

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width"><code>min-width</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>0

     <td>all elements but non-replaced inline elements, table rows, and row
      groups

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/css3-color/#transparency"><code>opacity</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-number">&lt;number&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>1

     <td>all

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/page.html#propdef-orphans"><code>orphans</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-integer">&lt;integer&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>2

     <td>block container elements

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#paged-media-group">paged</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-color"><code>outline-color</code></a>
      

     <td><a
      href="http://www.w3.org/TR/css3-color/#colorunits">&lt;color&gt;</a> |
      invert | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>invert

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#interactive-media-group">interactive</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-style"><code>outline-style</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-style">&lt;border-style&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#interactive-media-group">interactive</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-width"><code>outline-width</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-border-width">&lt;border-width&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>medium

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#interactive-media-group">interactive</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline"><code>outline</code></a>
      

     <td>[ <a
      href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-color">&lsquo;<code
      class=property>outline-color</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-style">&lsquo;<code
      class=property>outline-style</code>&rsquo;</a> || <a
      href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-width"><code>outline-width</code></a>
      ] | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#interactive-media-group">interactive</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visufx.html#propdef-overflow"><code>overflow</code></a>
      

     <td>visible | hidden | scroll | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>visible

     <td>block containers

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-padding-top"><code>padding-top</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-padding-right"><code>padding-right</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom"><code>padding-bottom</code></a>
      <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-padding-left"><code>padding-left</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-padding-width">&lt;padding-width&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>0

     <td>all elements except table-row-group, table-header-group,
      table-footer-group, table-row, table-column-group and table-column

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/box.html#propdef-padding"><code>padding</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/box.html#value-def-padding-width">&lt;padding-width&gt;</a>{1,4}
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>see individual properties

     <td>all elements except table-row-group, table-header-group,
      table-footer-group, table-row, table-column-group and table-column

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/page.html#propdef-page-break-after"><code>page-break-after</code></a>
      

     <td>auto | always | avoid | left | right | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>block-level elements (but see text)

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#paged-media-group">paged</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/page.html#propdef-page-break-before"><code>page-break-before</code></a>
      

     <td>auto | always | avoid | left | right | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>block-level elements (but see text)

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#paged-media-group">paged</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside"><code>page-break-inside</code></a>
      

     <td>avoid | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>block-level elements (but see text)

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#paged-media-group">paged</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-position"><code>position</code></a>
      

     <td>static | relative | absolute | fixed | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>static

     <td>&nbsp;

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/generate.html#propdef-quotes"><code>quotes</code></a>
      

     <td>[<a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-string">&lt;string&gt;</a>
      <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-string">&lt;string&gt;</a>]+
      | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>depends on user agent

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-right"><code>right</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>positioned elements

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/tables.html#propdef-table-layout"><code>table-layout</code></a>
      

     <td>auto | fixed | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>&lsquo;<code class=property>table</code>&rsquo; and &lsquo;<code
      class=property>inline-table</code>&rsquo; elements

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/text.html#propdef-text-align"><code>text-align</code></a>
      

     <td>left | right | center | justify | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>a nameless value that acts as &lsquo;<code
      class=property>left</code>&rsquo; if &lsquo;<code
      class=property>direction</code>&rsquo; is &lsquo;<code
      class=property>ltr</code>&rsquo;, &lsquo;<code
      class=property>right</code>&rsquo; if &lsquo;<code
      class=property>direction</code>&rsquo; is &lsquo;<code
      class=property>rtl</code>&rsquo;

     <td>block containers

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/text.html#propdef-text-decoration"><code>text-decoration</code></a>
      

     <td>none | [ underline || overline || line-through || blink ] | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>&nbsp;

     <td>no (see prose)

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/text.html#propdef-text-indent"><code>text-indent</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>0

     <td>block containers

     <td>yes

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/text.html#propdef-text-transform"><code>text-transform</code></a>
      

     <td>capitalize | uppercase | lowercase | none | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>none

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-top"><code>top</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>positioned elements

     <td>no

     <td>refer to height of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-unicode-bidi"><code>unicode-bidi</code></a>
      

     <td>normal | embed | bidi-override | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>all elements, but see prose

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align"><code>vertical-align</code></a>
      

     <td>baseline | sub | super | top | text-top | middle | bottom |
      text-bottom | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>baseline

     <td>inline-level and &lsquo;<code
      class=property>table-cell</code>&rsquo; elements

     <td>no

     <td>refer to the &lsquo;<code class=property>line-height</code>&rsquo;
      of the element itself

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visufx.html#propdef-visibility"><code>visibility</code></a>
      

     <td>visible | hidden | collapse | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>visible

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/text.html#propdef-white-space"><code>white-space</code></a>
      

     <td>normal | pre | nowrap | pre-wrap | pre-line | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/page.html#propdef-widows"><code>widows</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-integer">&lt;integer&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>2

     <td>block container elements

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>,
      <a
      href="http://www.w3.org/TR/CSS21/media.html#paged-media-group">paged</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visudet.html#propdef-width"><code>width</code></a>
      

     <td><a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-percentage">&lt;percentage&gt;</a>
      | auto | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>all elements but non-replaced inline elements, table rows, and row
      groups

     <td>no

     <td>refer to width of containing block

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/text.html#propdef-word-spacing"><code>word-spacing</code></a>
      

     <td>normal | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-length">&lt;length&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>normal

     <td>&nbsp;

     <td>yes

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      

    <tr>
     <th scope=row> <a
      href="http://www.w3.org/TR/CSS21/visuren.html#propdef-z-index"><code>z-index</code></a>
      

     <td>auto | <a
      href="http://www.w3.org/TR/CSS21/syndata.html#value-def-integer">&lt;integer&gt;</a>
      | <a
      href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
      

     <td>auto

     <td>positioned elements

     <td>no

     <td>&nbsp;

     <td><a
      href="http://www.w3.org/TR/CSS21/media.html#visual-media-group">visual</a>
      
  </table>

  <h3 id=selectors><span class=secno>4.2. </span>Selector Index</h3>

  <table class=data>
   <thead>
    <tr>
     <th class=pattern>Pattern

     <th>Meaning

     <th>Described in section

     <th>First defined in level

   <tbody>
    <tr>
     <th scope=row> *

     <td>any element

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#universal-selector">Universal
      selector</a>

     <td>2

    <tr>
     <th scope=row> E

     <td>an element of type E

     <td><a href="http://www.w3.org/TR/css3-selectors/#type-selectors">Type
      selector</a>

     <td>1

    <tr>
     <th scope=row> E[foo]

     <td>an E element with a "foo" attribute

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">Attribute
      selectors</a>

     <td>2

    <tr>
     <th scope=row> E[foo="bar"]

     <td>an E element whose "foo" attribute value is exactly equal to "bar"

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">Attribute
      selectors</a>

     <td>2

    <tr>
     <th scope=row> E[foo~="bar"]

     <td>an E element whose "foo" attribute value is a list of
      whitespace-separated values, one of which is exactly equal to "bar"

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">Attribute
      selectors</a>

     <td>2

    <tr>
     <th scope=row> E[foo^="bar"]

     <td>an E element whose "foo" attribute value begins exactly with the
      string "bar"

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">Attribute
      selectors</a>

     <td>3

    <tr>
     <th scope=row> E[foo$="bar"]

     <td>an E element whose "foo" attribute value ends exactly with the
      string "bar"

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">Attribute
      selectors</a>

     <td>3

    <tr>
     <th scope=row> E[foo*="bar"]

     <td>an E element whose "foo" attribute value contains the substring
      "bar"

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">Attribute
      selectors</a>

     <td>3

    <tr>
     <th scope=row> E[foo|="en"]

     <td>an E element whose "foo" attribute has a hyphen-separated list of
      values beginning (from the left) with "en"

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#attribute-selectors">Attribute
      selectors</a>

     <td>2

    <tr>
     <th scope=row> E:root

     <td>an E element, root of the document

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:nth-child(n)

     <td>an E element, the n-th child of its parent

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:nth-last-child(n)

     <td>an E element, the n-th child of its parent, counting from the last
      one

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:nth-of-type(n)

     <td>an E element, the n-th sibling of its type

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:nth-last-of-type(n)

     <td>an E element, the n-th sibling of its type, counting from the last
      one

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:first-child

     <td>an E element, first child of its parent

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>2

    <tr>
     <th scope=row> E:last-child

     <td>an E element, last child of its parent

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:first-of-type

     <td>an E element, first sibling of its type

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:last-of-type

     <td>an E element, last sibling of its type

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:only-child

     <td>an E element, only child of its parent

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:only-of-type

     <td>an E element, only sibling of its type

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:empty

     <td>an E element that has no children (including text nodes)

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">Structural
      pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:link<br>
      E:visited

     <td>an E element being the source anchor of a hyperlink of which the
      target is not yet visited (:link) or already visited (:visited)

     <td><a href="http://www.w3.org/TR/css3-selectors/#link">The link
      pseudo-classes</a>

     <td>1

    <tr>
     <th scope=row> E:active<br>
      E:hover<br>
      E:focus

     <td>an E element during certain user actions

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#useraction-pseudos">The user
      action pseudo-classes</a>

     <td>1 and 2

    <tr>
     <th scope=row> E:target

     <td>an E element being the target of the referring URI

     <td><a href="http://www.w3.org/TR/css3-selectors/#target-pseudo">The
      target pseudo-class</a>

     <td>3

    <tr>
     <th scope=row> E:lang(fr)

     <td>an element of type E in language "fr" (the document language
      specifies how language is determined)

     <td><a href="http://www.w3.org/TR/css3-selectors/#lang-pseudo">The
      :lang() pseudo-class</a>

     <td>2

    <tr>
     <th scope=row> E:enabled<br>
      E:disabled

     <td>a user interface element E which is enabled or disabled

     <td><a href="http://www.w3.org/TR/css3-selectors/#UIstates">The UI
      element states pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E:checked<!--<br>E:indeterminate-->

     <td>a user interface element E which is checked<!-- or in an
      indeterminate state-->
      (for instance a radio-button or checkbox)

     <td><a href="http://www.w3.org/TR/css3-selectors/#UIstates">The UI
      element states pseudo-classes</a>

     <td>3

    <tr>
     <th scope=row> E::first-line

     <td>the first formatted line of an E element

     <td><a href="http://www.w3.org/TR/css3-selectors/#first-line">The
      ::first-line pseudo-element</a>

     <td>1

    <tr>
     <th scope=row> E::first-letter

     <td>the first formatted letter of an E element

     <td><a href="http://www.w3.org/TR/css3-selectors/#first-letter">The
      ::first-letter pseudo-element</a>

     <td>1

    <tr>
     <th scope=row> E::before

     <td>generated content before an E element

     <td><a href="http://www.w3.org/TR/css3-selectors/#gen-content">The
      ::before pseudo-element</a>

     <td>2

    <tr>
     <th scope=row> E::after

     <td>generated content after an E element

     <td><a href="http://www.w3.org/TR/css3-selectors/#gen-content">The
      ::after pseudo-element</a>

     <td>2

    <tr>
     <th scope=row> E.warning

     <td>an E element whose class is "warning" (the document language
      specifies how class is determined).

     <td><a href="http://www.w3.org/TR/css3-selectors/#class-html">Class
      selectors</a>

     <td>1

    <tr>
     <th scope=row> E#myid

     <td>an E element with ID equal to "myid".

     <td><a href="http://www.w3.org/TR/css3-selectors/#id-selectors">ID
      selectors</a>

     <td>1

    <tr>
     <th scope=row> E:not(s)

     <td>an E element that does not match simple selector s

     <td><a href="http://www.w3.org/TR/css3-selectors/#negation">Negation
      pseudo-class</a>

     <td>3

    <tr>
     <th scope=row> E F

     <td>an F element descendant of an E element

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#descendant-combinators">Descendant
      combinator</a>

     <td>1

    <tr>
     <th scope=row> E &gt; F

     <td>an F element child of an E element

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#child-combinators">Child
      combinator</a>

     <td>2

    <tr>
     <th scope=row> E + F

     <td>an F element immediately preceded by an E element

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#adjacent-sibling-combinators">Adjacent
      sibling combinator</a>

     <td>2

    <tr>
     <th scope=row> E ~ F

     <td>an F element preceded by an E element

     <td><a
      href="http://www.w3.org/TR/css3-selectors/#general-sibling-combinators">General
      sibling combinator</a>

     <td>3
  </table>

  <h3 id=at-rules><span class=secno>4.3. </span>At-Rule Index</h3>

  <ul>
   <li><a href="http://www.w3.org/TR/CSS21/syndata.html#charset">@charset</a>
    

   <li><a
    href="http://www.w3.org/TR/CSS21/cascade.html#at-import">@import</a>,
    with the media list replaced by a <a
    href="http://www.w3.org/TR/css3-mediaqueries/">media query list</a>

   <li><a
    href="http://www.w3.org/TR/CSS21/media.html#at-media-rule">@media</a>,
    with the media list replaced by a <a
    href="http://www.w3.org/TR/css3-mediaqueries/">media query list</a>

   <li><a href="http://www.w3.org/TR/CSS21/page.html#page-box">@page</a>
  </ul>