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 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="bflib.xsl"?>
<ref name="CSS2" description="CSS 2.0 references" version="2">
<note title="more:">source:
http://www.w3.org/TR/REC-CSS2/
validator:
http://jigsaw.w3.org/css-validator/
</note>
<def deftype="proplist" kind="parameter" id="color">
<property kind="parameter" name="color" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime, maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,
ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,
ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,
InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,
ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description>
<color> | transparent</description>
</property>
<property name="colour" kind="link">
<description>http://www.w3.org/TR/REC-CSS2/syndata.html#value-def-color</description>
</property>
</def>
<element kind="css_property" name="Conventions">
<description> value types and arrangements</description>
<note title="Conventions">
*: 0 or more
+: 1 or more
?: 0 or 1
a b:Several juxtaposed words mean that all of them must occur, in the given order.
|: separates two or more alternatives: exactly one of them must occur.
||: separates two or more options: one or more of them must occur, in any order.
[ ]: grouping.
<type>: basic data types.
</note>
<properties>
<property name="grammar" kind="link">
<description>http://www.w3.org/TR/REC-CSS2/grammar.html</description>
</property>
</properties>
</element>
<element kind="css_selector" name="quick selectors">
<description>insert selectors, using Dialog</description>
<properties>
<property kind="parameter" name="selectors" >
<values>,a:link,a:visited,a:active,a,abbr,acronym,address,applet,area,b,bdo,blockquote,body,br,button,caption,cite,code,col,colgroup,dd,del,dfn,div,dl,dt,em,embed,fieldset,form,h1,h2,h3,h4,h5,h6,hr,i,iframe,img,input,ins,kbd,label,legend,li,map,noframes,noscript,object,ol,optgroup,option,p,pre,q,samp,select,small,span,strong,table,tbody,td,textarea,tfoot,th,thead,tr,tt,ul,var</values>
<description>insert selector, using Dialog
</description>
</property>
</properties>
</element>
<element kind="css_property" name="quick properties">
<description>insert properties, using Dialog</description>
<properties>
<property kind="parameter" name="properties" >
<values>,azimuth,background,background-attachment,background-color,background-image,background-position,background-repeat,border,border-bottom,border-bottom-color,border-bottom-style,border-bottom-width,'border-collapse',border-color,border-left,border-left-color,border-left-style,border-left-width,border-right,border-right-color,border-right-style,border-right-width,'border-spacing',border-style,border-top,border-top-color,border-top-style,border-top-width,border-width,bottom,caption-side,clear,clip,color,content,counter-increment,counter-reset,cue,cue-after,cue-before,cursor,direction,display,elevation,empty-cells,float,font,font-family,font-size,font-size-adjust,font-stretch,font-style,font-variant,font-weight,height,left,letter-spacing,line-height,list-style,list-style-image,list-style-position,list-style-type,margin,margin-bottom,margin-left,margin-right,margin-top,marker-offset,marks,max-height,max-width,min-height,min-width,orphans,outline,outline-color,outline-style,outline-width,overflow,padding,padding-bottom,padding-left,padding-right,padding-top,page,page-break-after,page-break-before,page-break-inside,pause,pause-after,pause-before,pitch,pitch-range,play-during,position,quotes,richness,right,size,speak,speak-header,speak-numeral,speak-punctuation,speech-rate,stress,table-layout,text-align,text-decoration,text-indent,text-shadow,text-transform,top,unicode-bidi,vertical-align,visibility,voice-family,volume,white-space,widows,width,word-spacing,z-index</values>
<description>insert property, using Dialog
</description>
</property>
</properties>
</element>
<element kind="css_property" name="property: inherit;">
<description>insert inherit value for selected property, using Dialog.</description>
<properties>
<property kind="parameter" name="properties" >
<values>,azimuth,background,background-attachment,background-color,background-image,background-position,background-repeat,border,border-bottom,border-bottom-color,border-bottom-style,border-bottom-width,border-collapse,border-color,border-left,border-left-color,border-left-style,border-left-width,border-right,border-right-color,border-right-style,border-right-width,border-spacing,border-style,border-top,border-top-color,border-top-style,border-top-width,border-width,bottom,caption-side,clear,clip,color,content,counter-increment,counter-reset,cue,cue-after,cue-before,cursor,direction,display,elevation,empty-cells,float,font,font-family,font-size,font-size-adjust,font-stretch,font-style,font-variant,font-weight,height,left,letter-spacing,line-height,list-style,list-style-image,list-style-position,list-style-type,margin,margin-bottom,margin-left,margin-right,margin-top,marker-offset,marks,max-height,max-width,min-height,min-width,orphans,outline,outline-color,outline-style,outline-width,overflow,padding,padding-bottom,padding-left,padding-right,padding-top,page-break-after,page-break-before,page-break-inside,pause,pause-after,pause-before,pitch,pitch-range,play-during,position,quotes,richness,right,size,speak,speak-header,speak-numeral,speak-punctuation,speech-rate,stress,table-layout,text-align,text-decoration,text-indent,text-shadow,text-transform,top,unicode-bidi,vertical-align,visibility,voice-family,volume,white-space,widows,width,word-spacing,z-index</values>
<description>insert inherit value for selected property, using Dialog.
</description>
</property>
</properties>
</element>
<element kind="css_property" name="Length">
<description>insert length values and units, using Dialog.
</description>
<properties>
<property kind="parameter" name="property" >
<values>,background-position,border-spacing,bottom,font-size,height,left,letter-spacing,line-height,marker-offset,max-height,max-width,min-width,right,size,text-indent,top,vertical-align,width,word-spacing</values>
</property>
<property kind="parameter" name="number" >
<description> <number></description>
</property>
<property kind="parameter" name="unit" >
<values>,%,em,ex,px,in,cm,mm,pt,pc</values>
<description> % | em | ex | px | in | cm | mm | pt | pc</description>
</property>
<property kind="parameter" name="number 2" >
<description> <number></description>
</property>
<property kind="parameter" name="unit 2" >
<values>,%,em,ex,px,in,cm,mm,pt,pc</values>
<description> % | em | ex | px | in | cm | mm | pt | pc</description>
</property>
</properties>
<note title="Valid units are :">for: letter-spacing, marker-offset, word-spacing:
em | ex | px | in | cm | mm | pt | pc
for: bottom, font-size, height, left, max-height, max-width, min-width,
for: right, text-indent, top, vertical-align, width:
% | em | ex | px | in | cm | mm | pt | pc
for: line-height:
<number> | em | ex | px | in | cm | mm | pt | pc
for: border-spacing, size:
[ em | ex | px | in | cm | mm | pt | pc ]{1,2}
for: background-position:
[ % | em | ex | px | in | cm | mm | pt | pc ]{1,2}
</note>
<note title="Units">Relative units are:
* em: the 'font-size' of the relevant font.
* ex: the 'x-height' of the relevant font.
* px: pixels, relative to the viewing device.
Absolute length units are only useful when the physical properties of the output medium are known.
The absolute units are:
* in: inches -- 1 inch is equal to 2.54 centimeters.
* cm: centimeters.
* mm: millimeters.
* pt: points -- the points used by CSS2 are equal to 1/72th of an inch.
* pc: picas -- 1 pica is equal to 12 points.
</note>
</element>
<group name="Visual">
<group name="background">
<element kind="css_property" name="background">
<description>Shorthand for setting the individual background properties.</description>
<properties>
<property kind="link" name="f">
<description>http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background</description>
</property>
<proplist ref="color" />
<property kind="parameter" name="image" >
<values>none,url()</values>
<description>
<uri> | none</description>
</property>
<property kind="parameter" name="repeat" >
<values>,repeat,repeat-x,repeat-y,no-repeat,inherit</values>
<description>
repeat | repeat-x | repeat-y | no-repeat</description>
</property>
<property kind="parameter" name="attachment" >
<values>,scroll,fixed,inherit</values>
<description>
scroll | fixed</description>
</property>
<property kind="parameter" name="vertical position" >
<values> %,top,center,bottom</values>
<description>
<percentage> | <length> | top | center | bottom</description>
</property>
<property kind="parameter" name="horizontal position" >
<values> %,left,center,right</values>
<description>
<percentage> | <length>| left | center | right
</description>
</property>
</properties>
<note title="background">[<'background-color'> || <'background-image'> || <'background-repeat'> || <'background-attachment'> || <'background-position'>] | inherit
Initial: not defined for shorthand properties
Applies to: all elements
Inherited: no
Percentages: allowed on 'background-position'
</note>
</element>
<element kind="css_property" name="background-attachment">
<description>Specifies if the background is fixed to the viewport or if it scrolls, which is the default.</description>
<properties>
<property kind="parameter" name="attachment" >
<values>,scroll,fixed,inherit</values>
<description> scroll | fixed | inherit
Initial: scroll
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="background-attachment">
If a background image is specified, this property specifies whether it is fixed with regard to the viewport ('fixed') or scrolls along with the document ('scroll').
Even if the image is fixed, it is still only visible when it is in the background or padding area of the element. Thus, unless the image is tiled ('background-repeat: repeat'), it may be invisible.
</note>
</element>
<element kind="css_property" name="background-color">
<description>Sets the background colour.</description>
<properties>
<property kind="parameter" name="color" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent | inherit
Initial: transparent
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="background-color">
This property sets the background color of an element, either a <color> value or the keyword 'transparent', to make the underlying colors shine through.
</note>
</element>
<element kind="css_property" name="background-image">
<description>Sets an image to use as the background.</description>
<properties>
<property kind="parameter" name="image" >
<values>none,url(),inherit</values>
<description> <uri> | none | inherit
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="Background-image">When setting a background image, authors should also specify a background color that will be used when the image is unavailable. When the image is available, it is rendered on top of the background color. (Thus, the color is visible in the transparent parts of the image).
Values for this property are either <uri>, to specify the image, or 'none', when no image is used.</note>
</element>
<element kind="css_property" name="background-position">
<description>Specifies the position of a background image if one is given.</description>
<properties>
<property kind="parameter" name="position" >
<values> 0% 0%, ,top left,top,top right,left,center,right,bottom left,bottom,bottom right,inherit</values>
<description> [ [<percentage> | <length> ]{1,2} | [ [top | center | bottom] || [left | center | right] ] ] | inherit
Initial: 0% 0%
Applies to: block-level and replaced elements
Inherited: no
Percentages: refer to the size of the box itself
</description>
</property>
</properties>
<note title="Background-position"> If a background image has been specified, this property specifies its initial position.
If only one percentage or length value is given, it sets the horizontal position only, the vertical position will be 50%. If two values are given, the horizontal position comes first. Combinations of length and percentage values are allowed, (e.g., '50% 2cm'). Negative positions are allowed. Keywords cannot be combined with percentage values or length values
</note>
</element>
<element kind="css_property" name="background-repeat">
<description>Controls tiling of background images.</description>
<properties>
<property kind="parameter" name="repeat" >
<values>,repeat,repeat-x,repeat-y,no-repeat,inherit</values>
<description>repeat | repeat-x | repeat-y | no-repeat | inherit
Initial: repeat
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="background-repeat">
If a background image is specified, this property specifies whether the image is repeated (tiled), and how. All tiling covers the content and padding areas of a box. Values have the following meanings:
repeat: The image is repeated both horizontally and vertically.
repeat-x: The image is repeated horizontally only.
repeat-y: The image is repeated vertically only.
no-repeat: The image is not repeated: only one copy of the image is drawn.
</note>
</element>
</group>
<group name="border">
<description>more info, see :
http://www.w3.org/TR/REC-CSS2/box.html</description>
<element kind="css_property" name="border">
<description>Shorthand for setting the individual border properties on all four borders.</description>
<properties>
<property kind="parameter" name="border-color" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent
</description>
</property>
<property kind="parameter" name="border-style" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
</description>
</property>
<property kind="parameter" name="border-width" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
</properties>
<note title="border">
[ <border-width> || <border-style> || [ <color> | transparent ] ] | inherit
The 'border' property is a shorthand property for setting the same width, color, and style for all four borders of a box. Unlike the shorthand 'margin' and 'padding' properties, the 'border' property cannot set different values on the four borders. To do so, one or more of the other border properties must be used.
</note>
</element>
<element kind="css_property" name="border-collapse">
<description>Controls how borders are handled in tables.</description>
<properties>
<property kind="parameter" name="collapse" >
<values>,collapse,separate,inherit</values>
<description>collapse | separate | inherit
Initial: collapse
Applies to: 'table' and 'inline-table' elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="collapse">
This property selects a table's border model. The value 'separate' selects the separated borders border model. The value 'collapse' selects the collapsing borders model. The models are described at http://www.w3.org/TR/REC-CSS2/tables.html#propdef-border-collapse
</note>
</element>
<element kind="css_property" name="border-color">
<description>Shorthand for setting the colour of all four borders.</description>
<properties>
<property kind="parameter" name="color1" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> [<color> | transparent]{1,4} | inherit
Initial: depends on user agent
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
<property kind="parameter" name="color2" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent
</description>
</property>
<property kind="parameter" name="color3" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent
</description>
</property>
<property kind="parameter" name="color4" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent
</description>
</property>
</properties>
<note title="color">
The 'border-color' property sets the color of the four borders. Values have the following meanings:
<color>: Specifies a color value.
transparent: The border is transparent (though it may have width).
The 'border-color' property can have from one to four values, and the values are set on the different sides as for 'border-width'.
If there is only one value, it applies to all sides. If there are two values, the top and bottom borders are set to the first value and the right and left are set to the second. If there are three values, the top is set to the first value, the left and right are set to the second, and the bottom is set to the third. If there are four values, they apply to the top, right, bottom, and left, respectively.
If an element's border color is not specified with a border property, user agents must use the value of the element's 'color' property as the computed value for the border color.
</note>
</element>
<element kind="css_property" name="border-spacing">
<description>Controls the spacing between cell borders in tables.</description>
<properties>
<property kind="parameter" name="spacing" >
<values>0,inherit</values>
<description> <length> <length>? | inherit
Initial: 0
Applies to: 'table' and 'inline-table' elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="spacing">
The lengths specify the distance that separates adjacent cell borders. If one length is specified, it gives both the horizontal and vertical spacing. If two are specified, the first gives the horizontal spacing and the second the vertical spacing. Lengths may not be negative.
</note>
</element>
<element kind="css_property" name="border-style">
<description>Shorthand for setting the style of all four borders.</description>
<properties>
<property kind="parameter" name="style" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description> [none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset]{1,4}
Initial: see individual properties
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
<property kind="parameter" name="style2" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
</property>
<property kind="parameter" name="style3" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
</property>
<property kind="parameter" name="style4" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
</property>
</properties>
<note title="border-style">
The 'border-style' property sets the style of the four borders. It can have from one to four values, and the values are set on the different sides as for 'border-width' above.
Since the initial value of the border styles is 'none', no borders will be visible unless the border style is set.
none: No border. This value forces the computed value of 'border-width' to be '0'.
hidden: Same as 'none', except in terms of border conflict resolution for table elements.
dotted: The border is a series of dots.
dashed: The border is a series of short line segments.
solid: The border is a single line segment.
double: The border is two solid lines. The sum of the two lines and the space between them equals the value of 'border-width'.
groove: The border looks as though it were carved into the canvas.
ridge: The opposite of 'grove': the border looks as though it were coming out of the canvas.
inset: The border makes the entire box look as though it were embedded in the canvas.
outset: The opposite of 'inset': the border makes the entire box look as though it were coming out of the canvas.
All borders are drawn on top of the box's background. The color of borders drawn for values of 'groove', 'ridge', 'inset', and 'outset' depends on the element's 'color' property.
Conforming HTML user agents may interpret 'dotted', 'dashed', 'double', 'groove', 'ridge', 'inset', and 'outset' to be 'solid'.
</note>
</element>
<element kind="css_property" name="border-top">
<description>Shorthand for setting the style, colour and width of the top border.</description>
<properties>
<property kind="parameter" name="style" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
</description>
</property>
<property kind="parameter" name="colour" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent
</description>
</property>
<property kind="parameter" name="width" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
</properties>
<note title="border-top">
Value: [ <'border-width'> || <'border-style'> || <color> ] | inherit
Initial: see individual properties
Applies to: all elements
Inherited: no
Percentages: N/A
</note>
</element>
<element kind="css_property" name="border-right">
<description>Shorthand for setting the style, colour and width of the right hand border.</description>
<properties>
<property kind="parameter" name="style" >
<values>none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
</description>
</property>
<property kind="parameter" name="colour" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent
</description>
</property>
<property kind="parameter" name="width" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
</properties>
<note title="border-right">
Value: [ <'border-width'> || <'border-style'> || <color> ] | inherit
Initial: see individual properties
Applies to: all elements
Inherited: no
Percentages: N/A
</note>
</element>
<element kind="css_property" name="border-bottom">
<description>Shorthand for setting the style, colour and width of the bottom border.</description>
<properties>
<property kind="parameter" name="style" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
</description>
</property>
<property kind="parameter" name="colour" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent
</description>
</property>
<property kind="parameter" name="width" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
</properties>
<note title="border-bottom">
Value: [ <'border-width'> || <'border-style'> || <color> ] | inherit
Initial: see individual properties
Applies to: all elements
Inherited: no
Percentages: N/A
</note>
</element>
<element kind="css_property" name="border-left">
<description>Shorthand for setting the style, colour and width of the left hand border.</description>
<properties>
<property kind="parameter" name="style" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
</description>
</property>
<property kind="parameter" name="colour" >
<values>transparent,#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | transparent
</description>
</property>
<property kind="parameter" name="width" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
</properties>
<note title="border-left">
Value: [ <'border-width'> || <'border-style'> || <color> ] | inherit
Initial: see individual properties
Applies to: all elements
Inherited: no
Percentages: N/A
</note>
</element>
<element kind="css_property" name="border-top-color">
<description>Sets the colour of the top border.</description>
<properties>
<property kind="parameter" name="color" >
<values>#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | inherit
Initial: the value of the 'color' property
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="top-color">
</note>
</element>
<element kind="css_property" name="border-right-color">
<description>Sets the colour of the right hand border.</description>
<properties>
<property kind="parameter" name="color" >
<values>#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | inherit
Initial: the value of the 'color' property
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="right-color">
</note>
</element>
<element kind="css_property" name="border-bottom-color">
<description>Sets the colour of the bottom border.</description>
<properties>
<property kind="parameter" name="color" >
<values>#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | inherit
Initial: the value of the 'color' property
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="bottom-color">
</note>
</element>
<element kind="css_property" name="border-left-color">
<description>Sets the colour of the left hand border.</description>
<properties>
<property kind="parameter" name="color" >
<values>#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | inherit
Initial: the value of the 'color' property
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="left-color">
</note>
</element>
<element kind="css_property" name="border-top-style">
<description>Sets the style of the top border.</description>
<properties>
<property kind="parameter" name="" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="">
see please border-style.
</note>
</element>
<element kind="css_property" name="border-right-style">
<description>Sets the style of the right hand border.</description>
<properties>
<property kind="parameter" name="right-style" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="right-style">
see please border-style.
</note>
</element>
<element kind="css_property" name="border-bottom-style">
<description>Sets the style of the bottom border.</description>
<properties>
<property kind="parameter" name="bottom-style" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="bottom-style">
see please border-style.
</note>
</element>
<element kind="css_property" name="border-left-style">
<description>Sets the style of the left hand border.</description>
<properties>
<property kind="parameter" name="left-style" >
<values>,none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description>none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="border-left-style">
see please border-style.
</note>
</element>
<element kind="css_property" name="border-top-width">
<description>Sets the width of the top border.</description>
<properties>
<property kind="parameter" name="width" >
<values>thin,medium,thick,0, %,inherit</values>
<description>thin | medium | thick | <length> | inherit
Initial: medium
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="border-top-width">
see please border-width.
</note>
</element>
<element kind="css_property" name="border-right-width">
<description>Sets the width of the right hand border.</description>
<properties>
<property kind="parameter" name="width" >
<values>thin,medium,thick,0, %,inherit</values>
<description>thin | medium | thick | <length> | inherit
Initial: medium
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="right-width">
see please border-width.
</note>
</element>
<element kind="css_property" name="border-bottom-width">
<description>Sets the width of the bottom border.</description>
<properties>
<property kind="parameter" name="width" >
<values>thin,medium,thick,0, %,inherit</values>
<description>thin | medium | thick | <length> | inherit
Initial: medium
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="bottom-width">
see please border-width.
</note>
</element>
<element kind="css_property" name="border-left-width">
<description>Sets the width of the left hand border.</description>
<properties>
<property kind="parameter" name="width" >
<values>thin,medium,thick,0 %,inherit</values>
<description>thin | medium | thick | <length> | inherit
Initial: medium
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="left-width">
see please border-width.
</note>
</element>
<element kind="css_property" name="border-width">
<description>Shorthand for setting the width of all four borders.</description>
<properties>
<property kind="parameter" name="width 1" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
<property kind="parameter" name="width 2" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
<property kind="parameter" name="width 3" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
<property kind="parameter" name="width 4" >
<values>thin,medium,thick,0, %</values>
<description>thin | medium | thick | <length>
</description>
</property>
</properties>
<note title="border-width"> This property is a shorthand property for setting 'border-top-width', 'border-right-width', 'border-bottom-width', and 'border-left-width' at the same place in the style sheet.
If there is only one value, it applies to all sides. If there are two values, the top and bottom borders are set to the first value and the right and left are set to the second. If there are three values, the top is set to the first value, the left and right are set to the second, and the bottom is set to the third. If there are four values, they apply to the top, right, bottom, and left, respectively.
The interpretation of the first three values depends on the user agent. The following relationships must hold, however:
'thin' <='medium' <= 'thick'.
</note>
</element>
</group>
<group name="Bottom - Float">
<element kind="css_property" name="bottom">
<description>Specifies the offset from the bottom edge of the containing block.</description>
<properties>
<property kind="parameter" name="bottom" >
<values>0, %,auto,inherit</values>
<description> <length> | <percentage> | auto | inherit
Initial: auto
Applies to: positioned elements
Inherited: no
Percentages: refer to height of containing block
</description>
</property>
</properties>
<note title="bottom">
<length>: The offset is a fixed distance from the reference edge.
<percentage>: The offset is a percentage of the containing block's width (for 'left' or 'right') or height (for 'top' and 'bottom'). For 'top' and 'bottom', if the height of the containing block is not specified explicitly (i.e., it depends on content height), the percentage value is interpreted like 'auto'.
auto: The effect of this value depends on which of related properties have the value 'auto' as well. See the sections on the width and height of absolutely positioned, non-replaced elements for details.
For absolutely positioned boxes, the offsets are with respect to the box's containing block. For relatively positioned boxes, the offsets are with respect to the outer edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties).
</note>
</element>
<element kind="css_property" name="caption-side">
<description>Specifies where a table caption will appear.</description>
<properties>
<property kind="parameter" name="caption-side" >
<values>,top,bottom,left,right,inherit</values>
<description>top | bottom | left | right | inherit
Initial: top
Applies to: 'table-caption' elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="caption-side">
This property specifies the position of the caption box with respect to the table box. Values have the following meanings:
top: Positions the caption box above the table box.
bottom: Positions the caption box below the table box.
left: Positions the caption box to the left of the table box.
right: Positions the caption box to the right of the table box.
Captions above or below a 'table' element are formatted very much as if they were a block element before or after the table, except that (1) they inherit inheritable properties from the table, and (2) they are not considered to be a block box for the purposes of any 'compact' or 'run-in' element that may precede the table.
A caption that is above or below a table box also behaves like a block box for width calculations; the width is computed with respect to the width of the table box's containing block.
For a caption that is on the left or right side of a table box, on the other hand, a value other than 'auto' for 'width' sets the width explicitly, but 'auto' tells the user agent to chose a "reasonable width". This may vary between "the narrowest possible box" to "a single line", so we recommend that users do not specify 'auto' for left and right caption widths.
To align caption content horizontally within the caption box, use the 'text-align' property. For vertical alignment of a left or right caption box with respect to the table box, use the 'vertical-align' property. The only meaningful values in this case are 'top', 'middle', and 'bottom'. All other values are treated the same as 'top'.
</note>
</element>
<element kind="css_property" name="clear">
<description>Specifies which sides of an element may not have a earlier floating element next to them.</description>
<properties>
<property kind="parameter" name="clear" >
<values>,none,left,right,both,inherit</values>
<description>none | left | right | both | inherit
Initial: none
Applies to: block-level elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="clear">
This property may only be specified for block-level elements (including floats). For compact and run-in boxes, this property applies to the final block box to which the compact or run-in box belongs.
Values have the following meanings when applied to non-floating block boxes:
left: The top margin of the generated box is increased enough that the top border edge is below the bottom outer edge of any left-floating boxes that resulted from elements earlier in the source document.
right: The top margin of the generated box is increased enough that the top border edge is below the bottom outer edge of any right-floating boxes that resulted from elements earlier in the source document.
both: The generated box is moved below all floating boxes of earlier elements in the source document..
none: No constraint on the box's position with respect to floats.
When the property is set on floating elements, it results in a modification of the rules for positioning the float. An extra constraint (#10) is added: The top outer edge of the float must be below the bottom outer edge of all earlier left-floating boxes (in the case of 'clear: left'), or all earlier right-floating boxes (in the case of 'clear: right'), or both ('clear: both').
</note>
</element>
<element kind="css_property" name="clip">
<description>Specifies the clipping rectangle for the element.</description>
<properties>
<property kind="parameter" name="clip" >
<values>rect( ),auto,inherit</values>
<description> <shape> | auto | inherit
Initial: auto
Applies to: block-level and replaced elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="clip">
The 'clip' property applies to elements that have a 'overflow' property with a value other than 'visible'. Values have the following meanings:
auto: The clipping region has the same size and location as the element's box(es).
<shape>: In CSS2, the only valid <shape> value is: rect (<top> <right> <bottom> <left>) where <top>, <bottom> <right>, and <left> specify offsets from the respective sides of the box.
<top>, <right>, <bottom>, and <left> may either have a <length> value or 'auto'. Negative lengths are permitted. The value 'auto' means that a given edge of the clipping region will be the same as the edge of the element's generated box (i.e., 'auto' means the same as '0'.)
When coordinates are rounded to pixel coordinates, care should be taken that no pixels remain visible when <left> + <right> is equal to the element's width (or <top> + <bottom> equals the element's height), and conversely that no pixels remain hidden when these values are 0.
The element's ancestors may also have clipping regions (in case their 'overflow' property is not 'visible'); what is rendered is the intersection of the various clipping regions.
If the clipping region exceeds the bounds of the UA's document window, content may be clipped to that window by the native operating environment.
</note>
</element>
<element kind="css_property" name="color">
<description>Specifies the foreground colour to be used for text.</description>
<properties>
<property kind="parameter" name="color" >
<values>#,rgb( ),aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,inherit,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | inherit
Initial: depends on user agent
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="color">
The following lists additional values for color-related CSS attributes and their general meaning. Any color property (e.g., 'color' or 'background-color') can take one of the following names. Although these are case-insensitive, it is recommended that the mixed capitalization shown below be used, to make the names more legible.
ActiveBorder: Active window border.
ActiveCaption: Active window caption.
AppWorkspace: Background color of multiple document interface.
Background: Desktop background.
ButtonFace: Face color for three-dimensional display elements.
ButtonHighlight: Dark shadow for three-dimensional display elements (for edges facing away from the light source).
ButtonShadow: Shadow color for three-dimensional display elements.
ButtonText: Text on push buttons.
CaptionText: Text in caption, size box, and scrollbar arrow box.
GrayText: Grayed (disabled) text. This color is set to #000 if the current display driver does not support a solid gray color.
Highlight: Item(s) selected in a control.
HighlightText: Text of item(s) selected in a control.
InactiveBorder: Inactive window border.
InactiveCaption: Inactive window caption.
InactiveCaptionText: Color of text in an inactive caption.
InfoBackground: Background color for tooltip controls.
InfoText: Text color for tooltip controls.
Menu: Menu background.
MenuText: Text in menus.
Scrollbar: Scroll bar gray area.
ThreeDDarkShadow: Dark shadow for three-dimensional display elements.
ThreeDFace: Face color for three-dimensional display elements.
ThreeDHighlight: Highlight color for three-dimensional display elements.
ThreeDLightShadow: Light color for three-dimensional display elements (for edges facing the light source).
ThreeDShadow: Dark shadow for three-dimensional display elements.
Window: Window background.
WindowFrame: Window frame.
WindowText: Text in windows.
</note>
</element>
<element kind="css_property" name="content">
<description>Provides a way of inserting extra content into the document.</description>
<properties>
<property kind="parameter" name="content" >
<values>"",url(),counter(),attr(),open-quote,close-quote,no-open-quote,no-close-quote,inherit</values>
<description> [ <string> | <uri> | <counter> | attr(X) | open-quote | close-quote | no-open-quote | no-close-quote ]+ | inherit
Initial: empty string
Applies to: :before and :after pseudo-elements
Inherited: no
Percentages: N/A
Media: all
</description>
</property>
</properties>
<note title="content">
<string>: Text content (see the section on strings).
<uri>: The value is a URI that designates an external resource. If a user agent cannot support the resource because of the media types it supports, it must ignore the resource. Note. CSS2 offers no mechanism to change the size of the embedded object, or to provide a textual description, like the "alt" or "longdesc" attributes do for images in HTML. This may change in future levels of CSS.
<counter>: Counters may be specified with two different functions: 'counter()' or 'counters()'. The former has two forms: 'counter(name)' or 'counter(name, style)'. The generated text is the value of the named counter at this point in the formatting structure; it is formatted in the indicated style ('decimal' by default). The latter function also has two forms: 'counter(name, string)' or 'counter(name, string, style)'. The generated text is the value of all counters with the given name at this point in the formatting structure, separated by the specified string. The counters are rendered in the indicated style ('decimal' by default). See the section on automatic counters and numbering for more information.
open-quote and close-quote: These values are replaced by the appropriate string from the 'quotes' property.
no-open-quote and no-close-quote: Inserts nothing (the empty string), but increments (decrements) the level of nesting for quotes.
attr(X): This function returns as a string the value of attribute X for the subject of the selector. The string is not parsed by the CSS processor. If the subject of the selector doesn't have an attribute X, an empty string is returned. The case-sensitivity of attribute names depends on the document language. Note. In CSS2, it is not possible to refer to attribute values for other elements of the selector.
The 'display' property controls whether the content is placed in a block, inline, or marker box.
see: http://www.w3.org/TR/REC-CSS2/generate.html#propdef-content
</note>
</element>
<element kind="css_property" name="counter-increment">
<description>Increment a named counter.</description>
<properties>
<property kind="parameter" name="counter-increment" >
<values>,none,inherit</values>
<description> [ <identifier> <integer>? ]+ | none | inherit
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="counter-increment">
The 'counter-increment' property accepts one or more names of counters (identifiers), each one optionally followed by an integer. The integer indicates by how much the counter is incremented for every occurrence of the element. The default increment is 1. Zero and negative integers are allowed.
The 'counter-reset' property also contains a list of one or more names of counters, each one optionally followed by an integer. The integer gives the value that the counter is set to on each occurrence of the element. The default is 0.
If 'counter-increment' refers to a counter that is not in the scope (see below) of any 'counter-reset', the counter is assumed to have been reset to 0 by the root element.
see http://www.w3.org/TR/REC-CSS2/generate.html
</note>
</element>
<element kind="css_property" name="counter-reset">
<description>Reset a named counter to 0, or a specified value.</description>
<properties>
<property kind="parameter" name="counter-reset" >
<values>,none,inherit</values> [ <identifier> <integer>? ]+ | none | inherit
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</property>
</properties>
<note title="counter-reset">
The 'counter-increment' property accepts one or more names of counters (identifiers), each one optionally followed by an integer. The integer indicates by how much the counter is incremented for every occurrence of the element. The default increment is 1. Zero and negative integers are allowed.
The 'counter-reset' property also contains a list of one or more names of counters, each one optionally followed by an integer. The integer gives the value that the counter is set to on each occurrence of the element. The default is 0.
If 'counter-increment' refers to a counter that is not in the scope (see below) of any 'counter-reset', the counter is assumed to have been reset to 0 by the root element.
see http://www.w3.org/TR/REC-CSS2/generate.html
</note>
</element>
<element kind="css_property" name="cursor">
<description>Set the mouse pointer to the specified type.</description>
<properties>
<property kind="parameter" name="url" >
<values>url(),</values>
<description> [ [<uri> ,]* [ auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize| text | wait | help ] ] | inherit
</description>
</property>
<property kind="parameter" name="url 2" >
<values>url(),</values>
<description> [ [<uri> ,]* [ auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize| text | wait | help ] ] | inherit
</description>
</property>
<property kind="parameter" name="cursor " >
<values>auto,crosshair,default,pointer,move,e-resize,ne-resize,nw-resize,n-resize,se-resize,sw-resize,s-resize,w-resize, text,wait,help</values>
<description> [ [<uri> ,]* [ auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize| text | wait | help ] ] | inherit
</description>
</property>
</properties>
<note title="cursor">
This property specifies the type of cursor to be displayed for the pointing device. Values have the following meanings:
auto: The UA determines the cursor to display based on the current context.
crosshair: A simple crosshair (e.g., short line segments resembling a "+" sign).
default: The platform-dependent default cursor. Often rendered as an arrow.
pointer: The cursor is a pointer that indicates a link.
move: Indicates something is to be moved.
e-resize, ne-resize, nw-resize, n-resize, se-resize, sw-resize, s-resize, w-resize: Indicate that some edge is to be moved. For example, the 'se-resize' cursor is used when the movement starts from the south-east corner of the box.
text: Indicates text that may be selected. Often rendered as an I-bar.
wait
Indicates that the program is busy and the user should wait. Often rendered as a watch or hourglass.
help
Help is available for the object under the cursor. Often rendered as a question mark or a balloon.
<uri>: The user agent retrieves the cursor from the resource designated by the URI. If the user agent cannot handle the first cursor of a list of cursors, it should attempt to handle the second, etc. If the user agent cannot handle any user-defined cursor, it must use the generic cursor at the end of the list.
</note>
</element>
<element kind="css_property" name="direction">
<description>Sets the text direction, left to right, right to left, etc.</description>
<properties>
<property kind="parameter" name="direction" >
<values>,ltr,rtl,inherit</values>
<description> ltr | rtl | inherit
Initial: ltr
Applies to: all elements, but see Notes
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="direction">
This property specifies the base writing direction of blocks and the direction of embeddings and overrides (see 'unicode-bidi') for the Unicode bidirectional algorithm. In addition, it specifies the direction of table column layout, the direction of horizontal overflow, and the position of an incomplete last line in a block in case of 'text-align: justify'.
Values for this property have the following meanings:
ltr: Left-to-right direction.
rtl: Right-to-left direction.
For the 'direction' property to have any effect on inline-level elements, the 'unicode-bidi' property's value must be 'embed' or 'override'.
</note>
</element>
<element kind="css_property" name="display">
<description>Controls how an element is rendered, if at all.</description>
<properties>
<property kind="parameter" name="display" >
<values>,inline,block,list-item,run-in,compact,marker,table,inline-table,table-row-group,table-header-group,table-footer-group,table-row,table-column-group,table-column,table-cell,table-caption,none,inherit</values>
<description>inline | block | list-item | run-in | compact | marker | table | inline-table | table-row-group | table-header-group | table-footer-group | table-row | table-column-group | table-column | table-cell | table-caption | none | inherit
Initial: inline
Applies to: all elements
Inherited: no
Percentages: N/A
Media: all
</description>
</property>
</properties>
<note title="display">
The values of this property have the following meanings:
block: This value causes an element to generate a principal block box.
inline: This value causes an element to generate one or more inline boxes.
list-item: This value causes an element (e.g., LI in HTML) to generate a principal block box and a list-item inline box. For information about lists and examples of list formatting, please consult the section on lists.
marker: This value declares generated content before or after a box to be a marker. This value should only be used with :before and :after pseudo-elements attached to block-level elements. In other cases, this value is interpreted as 'inline'. Please consult the section on markers for more information.
none: This value causes an element to generate no boxes in the formatting structure (i.e., the element has no effect on layout). Descendant elements do not generate any boxes either; this behavior cannot be overridden by setting the 'display' property on the descendants.
Please note that a display of 'none' does not create an invisible box; it creates no box at all. CSS includes mechanisms that enable an element to generate boxes in the formatting structure that affect formatting but are not visible themselves. Please consult the section on visibility for details.
run-in and compact: These values create either block or inline boxes, depending on context. Properties apply to run-in and compact boxes based on their final status (inline-level or block-level). For example, the 'white-space' property only applies if the box becomes a block box.
table, inline-table, table-row-group, table-column, table-column-group, table-header-group, table-footer-group, table-row, table-cell, and table-caption: These values cause an element to behave like a table element (subject to restrictions described in the chapter on tables).
Note that although the initial value of 'display' is 'inline', rules in the user agent's default style sheet may override this value.
</note>
</element>
<element kind="css_property" name="empty-cells">
<description>Controls if empty cells in tables should be shown or not.</description>
<properties>
<property kind="parameter" name="empty-cells" >
<values>,show,hide,inherit</values>
<description>show | hide | inherit
Initial: show
Applies to: 'table-cell' elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="empty-cells">
In the separated borders model, this property controls the rendering of borders around cells that have no visible content. Empty cells and cells with the 'visibility' property set to 'hidden' are considered to have no visible content. Visible content includes "&nbsp;" and other whitespace except ASCII CR ("\0D"), LF ("\0A"), tab ("\09"), and space ("\20").
When this property has the value 'show', borders are drawn around empty cells (like normal cells).
A value of 'hide' means that no borders are drawn around empty cells. Furthermore, if all the cells in a row have a value of 'hide' and have no visible content, the entire row behaves as if it had 'display: none'.
</note>
</element>
<element kind="css_property" name="float">
<description>Specifies if an element should float to the left or right, or not at all.</description>
<properties>
<property kind="parameter" name="float" >
<values>,left,right,none,inherit</values>
<description> left | right | none | inherit
Initial: none
Applies to: all but positioned elements and generated content
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="float">
This property specifies whether a box should float to the left, right, or not at all. It may be set for elements that generate boxes that are not absolutely positioned. The values of this property have the following meanings:
left: The element generates a block box that is floated to the left. Content flows on the right side of the box, starting at the top (subject to the 'clear' property). The 'display' is ignored, unless it has the value 'none'.
right: Same as 'left', but content flows on the left side of the box, starting at the top.
none: The box is not floated.
Here are the precise rules that govern the behavior of floats:
1. The left outer edge of a left-floating box may not be to the left of the left edge of its containing block. An analogous rule holds for right-floating elements.
2. If the current box is left-floating, and there are any left floating boxes generated by elements earlier in the source document, then for each such earlier box, either the left outer edge of the current box must be to the right of the right outer edge of the earlier box, or its top must be lower than the bottom of the earlier box. Analogous rules hold for right-floating boxes.
3. The right outer edge of a left-floating box may not be to the right of the left outer edge of any right-floating box that is to the right of it. Analogous rules hold for right-floating elements.
4. A floating box's outer top may not be higher than the top of its containing block.
5. The outer top of a floating box may not be higher than the outer top of any block or floated box generated by an element earlier in the source document.
6. The outer top of an element's floating box may not be higher than the top of any line-box containing a box generated by an element earlier in the source document.
7. A left-floating box that has another left-floating box to its left may not have its right outer edge to the right of its containing block's right edge. (Loosely: a left float may not stick out at the right edge, unless it is already as far to the left as possible.) An analogous rule holds for right-floating elements.
8. A floating box must be placed as high as possible.
9. A left-floating box must be put as far to the left as possible, a right-floating box as far to the right as possible. A higher position is preferred over one that is further to the left/right
</note>
</element>
</group>
<group name="font">
<description>more info, see :
http://www.w3.org/TR/REC-CSS2/fonts.html</description>
<element kind="css_property" name="font">
<description>Shorthand for setting the individual font properties.</description>
<properties>
<property kind="parameter" name="font-style" >
<values>,,normal,italic,oblique</values>
<description> normal | italic | oblique
</description>
</property>
<property kind="parameter" name="font-variant" >
<values>,,normal,small-caps</values>
<description> normal | small-caps
</description>
</property>
<property kind="parameter" name="font-weight" >
<values>,,normal,bold,bolder,lighter,100,200,300,400,500,600,700,800,900</values>
<description> normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
</description>
</property>
<property kind="parameter" name="font-size" >
<values>,%,xx-small,x-small,small,medium,large,x-large,xx-large,larger,smaller</values>
<description> <absolute-size> | <relative-size> | <length> | <percentage>
</description>
</property>
<property kind="parameter" name="line-height" >
<values>/</values>
<description> / <number> | <length> | <percentage> see Notes
</description>
</property>
<property kind="parameter" name="font-family" >
<values></values>
<description> [[ <family-name> | <generic-family> ],]* [<family-name> | <generic-family>]
</description>
</property>
</properties>
<note title="font">Value: [ [ <'font-style'> || <'font-variant'> || <'font-weight'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar | inherit
Initial: see individual properties
Applies to: all elements
Inherited: yes
Percentages: allowed on 'font-size' and 'line-height'
The 'font' property is, except as described below, a shorthand property for setting 'font-style', 'font-variant', 'font-weight', 'font-size', 'line-height', and 'font-family', at the same place in the style sheet. The syntax of this property is based on a traditional typographical shorthand notation to set multiple properties related to fonts.
All font-related properties are first reset to their initial values, including those listed in the preceding paragraph plus 'font-stretch' and 'font-size-adjust'. Then, those properties that are given explicit values in the 'font' shorthand are set to those values. For a definition of allowed and initial values, see the previously defined properties. For reasons of backwards compatibility, it is not possible to set 'font-stretch' and 'font-size-adjust' to other than their initial values using the 'font' shorthand property; instead, set the individual properties.
caption: The font used for captioned controls (e.g., buttons, drop-downs, etc.).
icon: The font used to label icons.
menu: The font used in menus (e.g., dropdown menus and menu lists).
message-box: The font used in dialog boxes.
small-caption: The font used for labeling small controls.
status-bar: The font used in window status bars.
</note>
</element>
<element kind="css_property" name="font system">
<description>Shorthand for setting the individual font properties.</description>
<properties>
<property kind="parameter" name="font-style" >
<values>,,normal,italic,oblique</values>
<description> normal | italic | oblique
</description>
</property>
<property kind="parameter" name="font-variant" >
<values>,,normal,small-caps</values>
<description> normal | small-caps
</description>
</property>
<property kind="parameter" name="font-weight" >
<values>,,normal,bold,bolder,lighter,100,200,300,400,500,600,700,800,900</values>
<description> normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
</description>
</property>
<property kind="parameter" name="font-size" >
<values>,%,xx-small,x-small,small,medium,large,x-large,xx-large,larger,smaller</values>
<description> <absolute-size> | <relative-size> | <length> | <percentage>
</description>
</property>
<property kind="parameter" name="line-height" >
<values>/</values>
<description> / <number> | <length> | <percentage> see Notes
</description>
</property>
<property kind="parameter" name="system fonts" title="system fonts:">
<values>caption,icon,menu,message-box,small-caption,status-bar</values>
<description> caption | icon | menu | message-box | small-caption | status-bar
</description>
</property>
</properties>
<note title="font">Value: [ [ <'font-style'> || <'font-variant'> || <'font-weight'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar | inherit
Initial: see individual properties
Applies to: all elements
Inherited: yes
Percentages: allowed on 'font-size' and 'line-height'
The 'font' property is, except as described below, a shorthand property for setting 'font-style', 'font-variant', 'font-weight', 'font-size', 'line-height', and 'font-family', at the same place in the style sheet. The syntax of this property is based on a traditional typographical shorthand notation to set multiple properties related to fonts.
All font-related properties are first reset to their initial values, including those listed in the preceding paragraph plus 'font-stretch' and 'font-size-adjust'. Then, those properties that are given explicit values in the 'font' shorthand are set to those values. For a definition of allowed and initial values, see the previously defined properties. For reasons of backwards compatibility, it is not possible to set 'font-stretch' and 'font-size-adjust' to other than their initial values using the 'font' shorthand property; instead, set the individual properties.
caption: The font used for captioned controls (e.g., buttons, drop-downs, etc.).
icon: The font used to label icons.
menu: The font used in menus (e.g., dropdown menus and menu lists).
message-box: The font used in dialog boxes.
small-caption: The font used for labeling small controls.
status-bar: The font used in window status bars.
</note>
</element>
<element kind="css_property" name="font-family">
<description>The name of the font, or font family to use.</description>
<properties>
<property kind="parameter" name="family-name" >
<values>,arial, helvetica,verdana,Georgia,"Trebuchet MS","new century schoolbook",roman,"times new roman",times,courier, fixed,western,"Commic Sans MS",Zapf-Chancery,Baskerville,"Heisi Mincho W3",Symbol</values>
<description> <family-name>
</description>
</property>
<property kind="parameter" name="generic-family" >
<values>,serif,sans-serif,cursive,fantasy,monospace</values>
<description> <generic-family>
Value: [[ <family-name> | <generic-family> ],]* [<family-name> | <generic-family>] | inherit
Initial: depends on user agent
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="font-family">
The generic font family will be used if one or more of the other fonts in a font set is unavailable. Although many fonts provide the "missing character" glyph, typically an open box, as its name implies this should not be considered a match except for the last font in a font set.
There are two types of font family names:
<family-name>
The name of a font family of choice. In the previous example, "Baskerville", "Heisi Mincho W3", and "Symbol" are font families. Font family names containing whitespace should be quoted. If quoting is omitted, any whitespace characters before and after the font name are ignored and any sequence of whitespace characters inside the font name is converted to a single space.
<generic-family>
The following generic families are defined: 'serif', 'sans-serif', 'cursive', 'fantasy', and 'monospace'. Please see the section on generic font families for descriptions of these families. Generic font family names are keywords, and therefore must not be quoted.
Authors are encouraged to offer a generic font family as a last alternative, for improved robustness.
http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-family
</note>
</element>
<element kind="css_property" name="font-size">
<description>Specifies how big the font should be.</description>
<properties>
<property kind="parameter" name="font-size" >
<values>,%,xx-small,x-small,small,medium,large,x-large,xx-large,larger,smaller,inherit</values>
<description> <absolute-size> | <relative-size> | <length> | <percentage> | inherit
Initial: medium
Applies to: all elements
Inherited: yes, the computed value is inherited
Percentages: refer to parent element's font size
</description>
</property>
</properties>
<note title="font-size">
The font size refers to the size of the font from baseline to baseline, when set solid (in CSS terms, this is when the 'font-size' and 'line-height' properties have the same value).
</note>
</element>
<element kind="css_property" name="font-size-adjust">
<description>Set the aspect ratio of the font.</description>
<properties>
<property kind="parameter" name="font-size-adjust" >
<values>,none,inherit</values>
<description> <number> | none | inherit
Initial: none
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="font-size-adjust">
http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-size-adjust
</note>
</element>
<element kind="css_property" name="font-stretch">
<description>Provides a way to stretch / squash the font.</description>
<properties>
<property kind="parameter" name="font-stretch" >
<values>,normal,wider,narrower,ultra-condensed,extra-condensed,condensed,semi-condensed,semi-expanded,expanded,extra-expanded,ultra-expanded,inherit</values>
<description> normal | wider | narrower | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded | inherit
Initial: normal
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="font-stretch">
The font stretch indicates the desired amount of condensing or expansion in the glyphs used to render the text, relative to other fonts in the same font family.
</note>
</element>
<element kind="css_property" name="font-style">
<description>Specifies if the font should be italic, oblique, etc.</description>
<properties>
<property kind="parameter" name="font-style" >
<values>,normal,italic,oblique,inherit</values>
<description> normal | italic | oblique | inherit
Initial: normal
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="font-style">
The font style specifies whether the text is to be rendered using a normal, italic, or oblique face. Italic is a more cursive companion face to the normal face, but not so cursive as to make it a script face. Oblique is a slanted form of the normal face, and is more commonly used as a companion face to sans-serif. This definition avoids having to label slightly slanted normal faces as oblique, or normal Greek faces as italic.
</note>
</element>
<element kind="css_property" name="font-variant">
<description>Enables a variant of the font to be used, such as small-caps.</description>
<properties>
<property kind="parameter" name="font-variant" >
<values>,normal,small-caps,inherit</values>
<description> normal | small-caps | inherit
Initial: normal
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="font-variant">
The font variant indicates whether the text is to be rendered using the normal glyphs for lowercase characters or using small-caps glyphs for lowercase characters. A particular font may contain only normal, only small-caps, or both types of glyph; this property is used to request an appropriate font and, if the font contains both variants, the appropriate glyphs.
</note>
</element>
<element kind="css_property" name="font-weight">
<description>Specifies the weight of the font.</description>
<properties>
<property kind="parameter" name="font-weight" >
<values>,normal,bold,bolder,lighter,100,200,300,400,500,600,700,800,900,inherit</values>
<description> normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | inherit
Initial: normal
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="font-weight">
The font weight refers to the boldness or lightness of the glyphs used to render the text, relative to other fonts in the same font family
</note>
</element>
</group>
<group name="Height - Line-height">
<element kind="css_property" name="height">
<description>Provides a height for an element.</description>
<properties>
<property kind="parameter" name="height" >
<values>0, %,auto,inherit</values>
<description> <length> | <percentage> | auto | inherit
Initial: auto
Applies to: all elements but non-replaced inline elements, table columns, and column groups
Inherited: no
Percentages: see Notes
</description>
</property>
</properties>
<note title="height">
This property specifies the content height of boxes generated by block-level and replaced elements.
This property does not apply to non-replaced inline-level elements. The height of a non-replaced inline element's boxes is given by the element's (possibly inherited) 'line-height' value.
Values have the following meanings:
<length>: Specifies a fixed height.
<percentage>: Specifies a percentage height. The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), the value is interpreted like 'auto'.
auto
The height depends on the values of other properties. See the prose below.
Negative values for 'height' are illegal.
see http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-height
</note>
</element>
<element kind="css_property" name="left">
<description>Specifies the offset of the left hand side of a positioned element.</description>
<properties>
<property kind="parameter" name="left" >
<values>0, %,auto,inherit</values>
<description> <length> | <percentage> | auto | inherit
Initial: auto
Applies to: positioned elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="left">
<length>: The offset is a fixed distance from the reference edge.
<percentage>: The offset is a percentage of the containing block's width (for 'left' or 'right') or height (for 'top' and 'bottom'). For 'top' and 'bottom', if the height of the containing block is not specified explicitly (i.e., it depends on content height), the percentage value is interpreted like 'auto'.
auto: The effect of this value depends on which of related properties have the value 'auto' as well. See the sections on the width and height of absolutely positioned, non-replaced elements for details.
For absolutely positioned boxes, the offsets are with respect to the box's containing block. For relatively positioned boxes, the offsets are with respect to the outer edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties).
</note>
</element>
<element kind="css_property" name="letter-spacing">
<description>Specifies the spacing between letters.</description>
<properties>
<property kind="parameter" name="letter-spacing" >
<values>normal,0,inherit</values>
<description>normal | <length> | inherit
Initial: normal
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="letter-spacing">
This property specifies spacing behavior between words. Values have the following meanings:
normal: The normal inter-word space, as defined by the current font and/or the UA.
<length>: This value indicates inter-word space in addition to the default space between words. Values may be negative, but there may be implementation-specific limits.
Word spacing algorithms are user agent-dependent. Word spacing is also influenced by justification (see the 'text-align' property)
</note>
</element>
<element kind="css_property" name="line-height">
<description>Specifies the minimal height of each generated inline box.</description>
<properties>
<property kind="parameter" name="line-height" >
<values>normal,0, %,inherit</values>
<description>normal | <number> | <length> | <percentage> | inherit
Initial: normal
Applies to: all elements
Inherited: yes
Percentages: refer to the font size of the element itself
</description>
</property>
</properties>
<note title="line-height">
If the property is set on a block-level element whose content is composed of inline-level elements, it specifies the minimal height of each generated inline box.
If the property is set on an inline-level element, it specifies the exact height of each box generated by the element. (Except for inline replaced elements, where the height of the box is given by the 'height' property.)
Values for this property have the following meanings:
normal: Tells user agents to set the computed value to a "reasonable" value based on the font size of the element. The value has the same meaning as <number>. We recommend a computed value for 'normal' between 1.0 to 1.2.
<length>: The box height is set to this length. Negative values are illegal.
<number>: The computed value of the property is this number multiplied by the element's font size. Negative values are illegal. However, the number, not the computed value, is inherited.
<percentage>: The computed value of the property is this percentage multiplied by the element's computed font size. Negative values are illegal.
</note>
</element>
</group>
<group name="list">
<element kind="css_property" name="list-style">
<description>Shorthand method of applying the list-style properties.</description>
<properties>
<property kind="parameter" name="style-type" >
<values>,,disc,circle,square,decimal,decimal-leading-zero,lower-roman,upper-roman,lower-greek,lower-alpha,lower-latin,upper-alpha,upper-latin,hebrew,armenian,georgian,cjk-ideographic,hiragana,katakana,hiragana-iroha,katakana-iroha,none</values>
<description> disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-alpha | lower-latin | upper-alpha | upper-latin | hebrew | armenian | georgian | cjk-ideographic | hiragana | katakana | hiragana-iroha | katakana-iroha | none
</description>
</property>
<property kind="parameter" name="style-position" >
<values>,,inside,outside</values>
<description> inside | outside
</description>
</property>
<property kind="parameter" name="style-image" >
<values>,url(""),none,inherit</values>
<description> <uri> | none
</description>
</property>
</properties>
<note title="list-style">
Value: [ <'list-style-type'> || <'list-style-position'> || <'list-style-image'> ] | inherit
Initial: not defined for shorthand properties
Applies to: elements with 'display: list-item'
Inherited: yes
Percentages: N/A
The 'list-style' property is a shorthand notation for setting the three properties 'list-style-type', 'list-style-image', and 'list-style-position' at the same place in the style sheet.
</note>
</element>
<element kind="css_property" name="list-style-image">
<description>Specifies an image that should be used as the marker in a list or list item.</description>
<properties>
<property kind="parameter" name="style-image" >
<values>url(),none,inherit</values>
<description> <uri> | none | inherit
Initial: none
Applies to: elements with 'display: list-item'
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="list-style-image">
This property sets the image that will be used as the list item marker. When the image is available, it will replace the marker set with the 'list-style-type' marker.
</note>
</element>
<element kind="css_property" name="list-style-position">
<description>Used to control if the list marker is rendered inside or outside the actual list item.</description>
<properties>
<property kind="parameter" name="style-position" >
<values>,inside,outside,inherit</values>
<description> inside | outside | inherit
Initial: outside
Applies to: elements with 'display: list-item'
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="list-style-position">
This property specifies the position of the marker box in the principal block box. Values have the following meanings:
outside: The marker box is outside the principal block box. Note. CSS1 did not specify the precise location of the marker box and for reasons of compatibility, CSS2 remains equally ambiguous. For more precise control of marker boxes, please use markers.
inside: The marker box is the first inline box in the principal block box, after which the element's content flows.
</note>
</element>
<element kind="css_property" name="list-style-type">
<description>Specifies the type of marker to display, circle, square etc.</description>
<properties>
<property kind="parameter" name="style-type" >
<values>,disc,circle,square,decimal,decimal-leading-zero,lower-roman,upper-roman,lower-greek,lower-alpha,lower-latin,upper-alpha,upper-latin,hebrew,armenian,georgian,cjk-ideographic,hiragana,katakana,hiragana-iroha,katakana-iroha,none,inherit</values>
<description> disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-alpha | lower-latin | upper-alpha | upper-latin | hebrew | armenian | georgian | cjk-ideographic | hiragana | katakana | hiragana-iroha | katakana-iroha | none | inherit
Initial: disc
Applies to: elements with 'display: list-item'
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="list-style-type">
see please http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-type
</note>
</element>
</group>
<group name="margin">
<description>more info, see :
http://www.w3.org/TR/REC-CSS2/box.html</description>
<element kind="css_property" name="margin">
<description>Shorthand method for specifying the top, right, bottom, left margin widths / heights.</description>
<properties>
<property kind="parameter" name="margin" >
<values>0,auto,inherit</values>
<description> <margin-width>{1,4} | inherit
Initial: not defined for shorthand properties
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="margin">
The 'margin' property is a shorthand property for setting 'margin-top', 'margin-right', 'margin-bottom', and 'margin-left' at the same place in the style sheet.
If there is only one value, it applies to all sides. If there are two values, the top and bottom margins are set to the first value and the right and left margins are set to the second. If there are three values, the top is set to the first value, the left and right are set to the second, and the bottom is set to the third. If there are four values, they apply to the top, right, bottom, and left, respectively.
</note>
</element>
<element kind="css_property" name="margin-top">
<description>Specifies the height of the top margin on an element.</description>
<properties>
<property kind="parameter" name="margin-top" >
<values>0,auto,inherit</values>
<description> <margin-width> | inherit
Initial: 0
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="margin-top">
Margin properties specify the width of the margin area of a box. The 'margin' shorthand property sets the margin for all four sides while the other margin properties only set their respective side.
The properties defined in this section refer to the <margin-width> value type, which may take one of the following values:
<length>
Specifies a fixed width.
<percentage>
The percentage is calculated with respect to the width of the generated box's containing block. This is true for 'margin-top' and 'margin-bottom', except in the page context, where percentages refer to page box height.
auto
See the section on computing widths and margins for behavior.
http://www.w3.org/TR/REC-CSS2/visudet.html#Computing_widths_and_margins
Negative values for margin properties are allowed, but there may be implementation-specific limits.
</note>
</element>
<element kind="css_property" name="margin-right">
<description>Specifies the width of the right hand margin on an element.</description>
<properties>
<property kind="parameter" name="margin-right" >
<values>0,auto,inherit</values>
<description> <margin-width> | inherit
Initial: 0
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="margin-right">
see please margin-top
</note>
</element>
<element kind="css_property" name="margin-bottom">
<description>Specifies the height of the bottom margin on an element.</description>
<properties>
<property kind="parameter" name="margin-bottom" >
<values>0,auto,inherit</values>
<description> <margin-width> | inherit
Initial: 0
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="margin-bottom">
see please margin-top
</note>
</element>
<element kind="css_property" name="margin-left">
<description>Specifies the width of the left hand margin on an element.</description>
<properties>
<property kind="parameter" name="margin-left" >
<values>0,auto,inherit</values>
<description> <margin-width> | inherit
Initial: 0
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="margin-left">
see please margin-top
</note>
</element>
</group>
<group name="Marker-offset - Overflow">
<element kind="css_property" name="marker-offset">
<description>Specifies the distance between the nearest border edges of a marker box and its associated principal box
.</description>
<properties>
<property kind="parameter" name="marker-offset" >
<values>0,auto,inherit</values>
<description> <length> | auto | inherit
Initial: auto
Applies to: elements with 'display: marker'
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="marker-offset">
This property specifies the distance between the nearest border edges of a marker box and its associated principal box. The offset may either be a user-specified (<length>) or chosen by the UA ('auto'). Lengths may be negative, but there may be implementation-specific limits.
</note>
</element>
<element kind="css_property" name="marks">
<description>Specifies whether cross marks or crop marks or both should be rendered just outside the page box edge
.</description>
<properties>
<property kind="parameter" name="marks" >
<values>,crop,cross,crop cross,none,inherit</values>
<description> [ crop || cross ] | none | inherit
Initial: none
Applies to: page context
Inherited: N/A
Percentages: N/A
Media: visual, paged
</description>
</property>
</properties>
<note title="marks">
In high-quality printing, marks are often added outside the page box. This property specifies whether cross marks or crop marks or both should be rendered just outside the page box edge.
Crop marks indicate where the page should be cut. Cross marks (also known as register marks or registration marks) are used to align sheets.
Marks are visible only on absolute page boxes (see the 'size' property). In relative page boxes, the page box will be aligned with the target and the marks will be outside the printable area.
The size, style, and position of cross marks depend on the user agent.
</note>
</element>
<element kind="css_property" name="max-height">
<description>Specifies a maximum height for an element, does not apply to table elements.</description>
<properties>
<property kind="parameter" name="max-height" >
<values>0, %,none,inherit</values>
<description> <length> | <percentage> | none | inherit
Initial: none
Applies to: all elements except non-replaced inline elements and table elements
Inherited: no
Percentages: refer to height of containing block
</description>
</property>
</properties>
<note title="max-height">
allow authors to constrain box heights to a certain range. Values have the following meanings:
<length>: Specifies a fixed minimum or maximum computed height.
<percentage>: Specifies a percentage for determining the computed value. The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), the percentage value is interpreted like 'auto'.
none
(Only on 'max-height') No limit on the height of the box.
The following algorithm describes how the two properties influence the computed value of the 'height' property:
1. The height is computed (without 'min-height' and 'max-height') following the rules under "Computing heights and margins" above.
2. If the computed value of 'min-height' is greater than the value of 'max-height', 'max-height' is set to the value of 'min-height'.
3. If the computed height is greater than 'max-height', the rules above are applied again, but this time using the value of 'max-height' as the specified value for 'height'.
4. If the computed height is smaller than 'min-height', the rules above are applied again, but this time using the value of 'min-height' as the specified value for 'height'.
</note>
</element>
<element kind="css_property" name="max-width">
<description>Specifies a maximum width for an element, does not apply to table elements.</description>
<properties>
<property kind="parameter" name="max-width" >
<values>0, %,none,inherit</values>
<description> <length> | <percentage> | none | inherit
Initial: none
Applies to: all elements except non-replaced inline elements and table elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="max-width">
allow authors to constrain box widths to a certain range. Values have the following meanings:
<length>: Specifies a fixed minimum or maximum computed width.
<percentage>: Specifies a percentage for determining the computed value. The percentage is calculated with respect to the width of the generated box's containing block.
none: (Only on 'max-width') No limit on the width of the box.
The following algorithm describes how the two properties influence the computed value of the 'width' property:
1. The width is computed (without 'min-width' and 'max-width') following the rules under "Computing widths and margins" above.
2. If the computed value of 'min-width' is greater than the value of 'max-width', 'max-width' is set to the value of 'min-width'.
3. If the computed width is greater than 'max-width', the rules above are applied again, but this time using the value of 'max-width' as the specified value for 'width'.
4. If the computed width is smaller than 'min-width', the rules above are applied again, but this time using the value of 'min-width' as the specified value for 'width'.
The user agent may define a non-negative minimum value for the 'min-width' property, which may vary from element to element and even depend on other properties. If 'min-width' goes below this limit, either because it was set explicitly, or because it was 'auto' and the rules below would make it too small, the user agent may use the minimum value as the computed value.
</note>
</element>
<element kind="css_property" name="min-height">
<description>Specifies a minimum height for an element, does not apply to table elements.</description>
<properties>
<property kind="parameter" name="min-height" >
<values>0, %,inherit</values>
<description> <length> | <percentage> | inherit
Initial: 0
Applies to: all elements except non-replaced inline elements and table elements
Inherited: no
Percentages: refer to height of containing block
</description>
</property>
</properties>
<note title="min-height">
allow authors to constrain box heights to a certain range. Values have the following meanings:
<length>: Specifies a fixed minimum or maximum computed height.
<percentage>: Specifies a percentage for determining the computed value. The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), the percentage value is interpreted like 'auto'.
none
(Only on 'max-height') No limit on the height of the box.
The following algorithm describes how the two properties influence the computed value of the 'height' property:
1. The height is computed (without 'min-height' and 'max-height') following the rules under "Computing heights and margins" above.
2. If the computed value of 'min-height' is greater than the value of 'max-height', 'max-height' is set to the value of 'min-height'.
3. If the computed height is greater than 'max-height', the rules above are applied again, but this time using the value of 'max-height' as the specified value for 'height'.
4. If the computed height is smaller than 'min-height', the rules above are applied again, but this time using the value of 'min-height' as the specified value for 'height'.
</note>
</element>
<element kind="css_property" name="min-width">
<description>Specifies a minimum width for an element, does not apply to table elements.</description>
<properties>
<property kind="parameter" name="min-width" >
<values>0, %,inherit</values>
<description> <length> | <percentage> | inherit
Initial: UA dependent
Applies to: all elements except non-replaced inline elements and table elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="min-width">
allow authors to constrain box widths to a certain range. Values have the following meanings:
<length>: Specifies a fixed minimum or maximum computed width.
<percentage>: Specifies a percentage for determining the computed value. The percentage is calculated with respect to the width of the generated box's containing block.
none: (Only on 'max-width') No limit on the width of the box.
The following algorithm describes how the two properties influence the computed value of the 'width' property:
1. The width is computed (without 'min-width' and 'max-width') following the rules under "Computing widths and margins" above.
2. If the computed value of 'min-width' is greater than the value of 'max-width', 'max-width' is set to the value of 'min-width'.
3. If the computed width is greater than 'max-width', the rules above are applied again, but this time using the value of 'max-width' as the specified value for 'width'.
4. If the computed width is smaller than 'min-width', the rules above are applied again, but this time using the value of 'min-width' as the specified value for 'width'.
The user agent may define a non-negative minimum value for the 'min-width' property, which may vary from element to element and even depend on other properties. If 'min-width' goes below this limit, either because it was set explicitly, or because it was 'auto' and the rules below would make it too small, the user agent may use the minimum value as the computed value.
</note>
</element>
<element kind="css_property" name="orphans">
<description>Specifies the minimum number of lines of a paragraph that must be left at the bottom of a page.
</description>
<properties>
<property kind="parameter" name="orphans" >
<values>,2,inherit</values>
<description> <integer> | inherit
Initial: 2
Applies to: block-level elements
Inherited: yes
Percentages: N/A
Media: visual, paged
</description>
</property>
</properties>
<note title="orphans">
The 'orphans' property specifies the minimum number of lines of a paragraph that must be left at the bottom of a page. The 'widows' property specifies the minimum number of lines of a paragraph that must be left at the top of a page. Examples of how they are used to control page breaks are given below.
For information about paragraph formatting, please consult the section on line boxes. http://www.w3.org/TR/REC-CSS2/visuren.html#line-box
</note>
</element>
<element kind="css_property" name="outline">
<description>Shorthand for setting the individual outline properties on all sides of the box.</description>
<properties>
<property kind="parameter" name="outline-color" >
<values>#,rgb( ),invert,aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText</values>
<description> <color> | invert
</description>
</property>
<property kind="parameter" name="outline-style" >
<values>,none,dotted,dashed,solid,double,groove,ridge,inset,outset</values>
<description> none | dotted | dashed | solid | double | groove | ridge | inset | outset
</description>
</property>
<property kind="parameter" name="outline-width" >
<values>thin,medium,thick,0</values>
<description> thin | medium | thick | <lenght>
</description>
</property>
</properties>
<note title="outline">
At times, style sheet authors may want to create outlines around visual objects such as buttons, active form fields, image maps, etc., to make them stand out. CSS2 outlines differ from borders in the following ways:
1. Outlines do not take up space.
2. Outlines may be non-rectangular.
The outline properties control the style of these dynamic outlines.
more info at :
http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline
</note>
</element>
<element kind="css_property" name="outline-color">
<description>Sets the colour of the outline on all sides of the box.</description>
<properties>
<property kind="parameter" name="outline-color" >
<values>#,rgb( ),invert,aqua,black,blue,fuchsia,gray,green,lime,maroon,navy,olive,purple,red,silver,teal,white,yellow,ActiveBorder,ActiveCaption,AppWorkspace,Background,ButtonFace,ButtonHighlight,ButtonShadow,ButtonText,CaptionText,GrayText,Highlight,HighlightText,InactiveBorder,InactiveCaption,InactiveCaptionText,InfoBackground,InfoText,Menu,MenuText,Scrollbar,ThreeDDarkShadow,ThreeDFace,ThreeDHighlight,ThreeDLightShadow,ThreeDShadow,Window,WindowFrame,WindowText,inherit</values>
<description> <color> | invert | inherit
Initial: invert
Applies to: all elements
Inherited: no
Percentages: N/A
Media: visual, interactive
</description>
</property>
</properties>
<note title="outline-color">
The 'outline-color' accepts all colors, as well as the keyword 'invert'. 'Invert' is expected to perform a color inversion on the pixels on the screen. This is a common trick to ensure the focus border is visible, regardless of color background.
sea please outline.
</note>
</element>
<element kind="css_property" name="outline-style">
<description>Sets the style of the outline on all sides of the box.</description>
<properties>
<property kind="parameter" name="outline-style" >
<values>,none,dotted,dashed,solid,double,groove,ridge,inset,outset,inherit</values>
<description> <border-style> | inherit
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
Media: visual, interactive
</description>
</property>
</properties>
<note title="outline-style">
The 'outline-style' property accepts the same values as 'border-style', except that 'hidden' is not a legal outline style.
sea please outline.
</note>
</element>
<element kind="css_property" name="outline-width">
<description>Sets the width of the outline on all sides of the box.</description>
<properties>
<property kind="parameter" name="outline-width" >
<values>thin,medium,thick,0,inherit</values>
<description> thin | medium | thick | <lenght> | inherit
Initial: medium
Applies to: all elements
Inherited: no
Percentages: N/A
Media: visual, interactive
</description>
</property>
</properties>
<note title="outline-width">
The 'outline-width' property accepts the same values as 'border-width'.
sea please outline.
</note>
</element>
<element kind="css_property" name="overflow">
<description>Controls how content that does not fit inside its element should be handled.</description>
<properties>
<property kind="parameter" name="overflow" >
<values>,visible,hidden,scroll,auto,inherit</values>
<description>visible | hidden | scroll | auto | inherit
Initial: visible
Applies to: block-level and replaced elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="overflow">
This property specifies whether the content of a block-level element is clipped when it overflows the element's box (which is acting as a containing block for the content). Values have the following meanings:
visible: This value indicates that content is not clipped, i.e., it may be rendered outside the block box.
hidden: This value indicates that the content is clipped and that no scrolling mechanism should be provided to view the content outside the clipping region; users will not have access to clipped content. The size and shape of the clipping region is specified by the 'clip' property.
scroll: This value indicates that the content is clipped and that if the user agent uses scrolling mechanism that is visible on the screen (such as a scroll bar or a panner), that mechanism should be displayed for a box whether or not any of its content is clipped. This avoids any problem with scrollbars appearing and disappearing in a dynamic environment. When this value is specified and the target medium is 'print' or 'projection', overflowing content should be printed.
auto: The behavior of the 'auto' value is user agent-dependent, but should cause a scrolling mechanism to be provided for overflowing boxes.
Even if 'overflow' is set to 'visible', content may be clipped to a UA's document window by the native operating environment.
</note>
</element>
</group>
<group name="padding">
<description>more info, see :
http://www.w3.org/TR/REC-CSS2/box.html</description>
<element kind="css_property" name="padding">
<description>Specifies the width of the padding area of a box. The 'padding' shorthand property sets the padding for all four sides while the other padding properties only set their respective side.
If there is only one value, it applies to all sides. If there are two values, the top and bottom paddings are set to the first value and the right and left paddings are set to the second. If there are three values, the top is set to the first value, the left and right are set to the second, and the bottom is set to the third. If there are four values, they apply to the top, right, bottom, and left, respectively.</description>
<properties>
<property kind="parameter" name="padding" >
<values>0, %</values>
<description> <padding-width>{1,4} | inherit
Initial: not defined for shorthand properties
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
<property kind="parameter" name="padding 1" >
<values>0, %</values>
<description> <length> | <percentage>
</description>
</property>
<property kind="parameter" name="padding 2" >
<values>0, %</values>
<description> <length> | <percentage>
</description>
</property>
<property kind="parameter" name="padding 3" >
<values>0, %</values>
<description> <length> | <percentage>
</description>
</property>
</properties>
<note title="padding">
The padding properties specify the width of the padding area of a box. The 'padding' shorthand property sets the padding for all four sides while the other padding properties only set their respective side.
The properties defined in this section refer to the <padding-width> value type, which may take one of the following values:
<length>: Specifies a fixed width.
<percentage>: The percentage is calculated with respect to the width of the generated box's containing block, even for 'padding-top' and 'padding-bottom'.
The 'padding' property is a shorthand property for setting 'padding-top', 'padding-right', 'padding-bottom', and 'padding-left' at the same place in the style sheet.
If there is only one value, it applies to all sides. If there are two values, the top and bottom paddings are set to the first value and the right and left paddings are set to the second. If there are three values, the top is set to the first value, the left and right are set to the second, and the bottom is set to the third. If there are four values, they apply to the top, right, bottom, and left, respectively.
The surface color or image of the padding area is specified via the 'background' property:
Unlike margin properties, values for padding values cannot be negative. Like margin properties, percentage values for padding properties refer to the width of the generated box's containing block.
The surface color or image of the padding area is specified via the 'background' property
</note>
</element>
<element kind="css_property" name="padding-top">
<description>Set the top padding of a box.</description>
<properties>
<property kind="parameter" name="padding-top" >
<values>0, %,inherit</values>
<description> <padding-width> | inherit
Initial: 0
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="padding-top">
see please padding
</note>
</element>
<element kind="css_property" name="padding-right">
<description>Set the right padding of a box.</description>
<properties>
<property kind="parameter" name="padding-right" >
<values>0, %,inherit</values>
<description> <padding-width> | inherit
Initial: 0
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="padding-right">
see please padding
</note>
</element>
<element kind="css_property" name="padding-bottom">
<description>Set the bottom padding of a box.</description>
<properties>
<property kind="parameter" name="padding-bottom" >
<values>0, %,inherit</values>
<description> <padding-width> | inherit
Initial: 0
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="padding-bottom">
see please padding
</note>
</element>
<element kind="css_property" name="padding-left">
<description>Set the left padding of a box.</description>
<properties>
<property kind="parameter" name="padding-left" >
<values>0, %,inherit</values>
<description> <padding-width> | inherit
Initial: 0
Applies to: all elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="padding-left">
see please padding
</note>
</element>
</group>
<group name="page">
<description>more info, see :
http://www.w3.org/TR/REC-CSS2/page.html</description>
<element kind="css_property" name="page">
<description>Specifies a particular type of page where an element should be displayed.</description>
<properties>
<property kind="parameter" name="page" >
<values>,auto</values>
<description> <identifier> | auto
Initial: auto
Applies to: block-level elements
Inherited: yes
Percentages: N/A
Media: visual, paged
</description>
</property>
</properties>
<note title="page">
The 'page' property can be used to specify a particular type of page where an element should be displayed.
This example will put all tables on a right-hand side landscape page (named "rotated"):
@page rotated {size: landscape}
TABLE {page: rotated; page-break-before: right}
The 'page' property works as follows: If a block box with inline content has a 'page' property that is different from the preceding block box with inline content, then one or two page breaks are inserted between them, and the boxes after the break are rendered on a page box of the named type.
See http://www.w3.org/TR/REC-CSS2/page.html#propdef-page
</note>
</element>
<element kind="css_property" name="page-break-after">
<description>Page break after.</description>
<properties>
<property kind="parameter" name="page-break-after" >
<values>,auto,always,avoid,left,right,inherit</values>
<description> auto | always | avoid | left | right | inherit
Initial: auto
Applies to: block-level elements
Inherited: no
Percentages: N/A
Media: visual, paged
</description>
</property>
</properties>
<note title="page-break-after">
auto: Neither force nor forbid a page break before (after, inside) the generated box.
always: Always force a page break before (after) the generated box.
avoid: Avoid a page break before (after, inside) the generated box.
left: Force one or two page breaks before (after) the generated box so that the next page is formatted as a left page.
right: Force one or two page breaks before (after) the generated box so that the next page is formatted as a right page.
</note>
</element>
<element kind="css_property" name="page-break-before">
<description>Page break before.</description>
<properties>
<property kind="parameter" name="page-break-before" >
<values>,auto,always,avoid,left,right,inherit</values>
<description> auto | always | avoid | left | right | inherit
Initial: auto
Applies to: block-level elements
Inherited: no
Percentages: N/A
Media: visual, paged
</description>
</property>
</properties>
<note title="page-break-before">
see please page-break-after
</note>
</element>
<element kind="css_property" name="page-break-inside">
<description>Page break inside.</description>
<properties>
<property kind="parameter" name="page-break-inside" >
<values>,avoid,auto,inherit</values>
<description> avoid | auto | inherit
Initial: auto
Applies to: block-level elements
Inherited: yes
Percentages: N/A
Media: visual, paged
</description>
</property>
</properties>
<note title="page-break-inside">
see please page-break-after
</note>
</element>
</group>
<group name="Position - Table-layout">
<element kind="css_property" name="position">
<description>The 'position' and 'float' properties determine which of the CSS2 positioning algorithms is used to calculate the position of a box.</description>
<properties>
<property kind="parameter" name="position" >
<values>,static,relative,absolute,fixed,inherit</values>
<description>static | relative | absolute | fixed | inherit
Initial: static
Applies to: all elements, but not to generated content
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="position">
The values of this property have the following meanings:
static: The box is a normal box, laid out according to the normal flow. The 'left' and 'top' properties do not apply.
relative: The box's position is calculated according to the normal flow (this is called the position in normal flow). Then the box is offset relative to its normal position. When a box B is relatively positioned, the position of the following box is calculated as though B were not offset.
absolute: The box's position (and possibly size) is specified with the 'left', 'right', 'top', and 'bottom' properties. These properties specify offsets with respect to the box's containing block. Absolutely positioned boxes are taken out of the normal flow. This means they have no impact on the layout of later siblings. Also, though absolutely positioned boxes have margins, they do not collapse with any other margins.
fixed: The box's position is calculated according to the 'absolute' model, but in addition, the box is fixed with respect to some reference. In the case of continuous media, the box is fixed with respect to the viewport (and doesn't move when scrolled). In the case of paged media, the box is fixed with respect to the page, even if that page is seen through a viewport (in the case of a print-preview, for example). Authors may wish to specify 'fixed' in a media-dependent way. For instance, an author may want a box to remain at the top of the viewport on the screen, but not at the top of each printed page. The two specifications may be separated by using an @media rule, as in:
@media screen {
H1#first { position: fixed }
}
</note>
</element>
<element kind="css_property" name="quotes">
<description>Specifies pairs of quotation marks for each level of embedded quotation. The 'content' property gives access to those quotation marks and causes them to be inserted before and after a quotation.</description>
<properties>
<property kind="parameter" name="quotes" >
<values>"",none,inherit</values>
<description> [<string> <string>]+ | none | inherit
Initial: depends on user agent
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="quotes">
This property specifies quotation marks for any number of embedded quotations. Values have the following meanings:
none
The 'open-quote' and 'close-quote' values of the 'content' property produce no quotations marks.
[<string> <string>]+: Values for the 'open-quote' and 'close-quote' values of the 'content' property are taken from this list of pairs of quotation marks (opening and closing). The first (leftmost) pair represents the outermost level of quotation, the second pair the first level of embedding, etc. The user agent must apply the appropriate pair of quotation marks according to the level of embedding.
</note>
</element>
<element kind="css_property" name="right">
<description>Specifies how far a box's right content edge is offset to the left of the right edge of the box's containing block.</description>
<properties>
<property kind="parameter" name="right" >
<values>0, %,auto,inherit</values>
<description> <length> | <percentage> | auto | inherit
Initial: auto
Applies to: positioned elements
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="right">
<length>: The offset is a fixed distance from the reference edge.
<percentage>: The offset is a percentage of the containing block's width (for 'left' or 'right') or height (for 'top' and 'bottom'). For 'top' and 'bottom', if the height of the containing block is not specified explicitly (i.e., it depends on content height), the percentage value is interpreted like 'auto'.
auto: The effect of this value depends on which of related properties have the value 'auto' as well. See the sections on the width and height of absolutely positioned, non-replaced elements for details.
For absolutely positioned boxes, the offsets are with respect to the box's containing block. For relatively positioned boxes, the offsets are with respect to the outer edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties).
</note>
</element>
<element kind="css_property" name="size">
<description>Specifies the size and orientation of a page box.</description>
<properties>
<property kind="parameter" name="size" >
<values>0,auto,portrait,landscape,inherit</values>
<description> <length>{1,2} | auto | portrait | landscape | inherit
Initial: auto
Applies to: the page context
Inherited: N/A
Percentages: N/A
Media: visual, paged
</description>
</property>
</properties>
<note title="size">
This property specifies the size and orientation of a page box.
The size of a page box may either be "absolute" (fixed size) or "relative" (scalable, i.e., fitting available sheet sizes). Relative page boxes allow user agents to scale a document and make optimal use of the target size.
Three values for the 'size' property create a relative page box:
auto: The page box will be set to the size and orientation of the target sheet.
landscape: Overrides the target's orientation. The page box is the same size as the target, and the longer sides are horizontal.
portrait: Overrides the target's orientation. The page box is the same size as the target, and the shorter sides are horizontal.
see http://www.w3.org/TR/REC-CSS2/page.html#propdef-size
</note>
</element>
<element kind="css_property" name="table-layout">
<description>Controls the algorithm used to lay out the table cells, rows, and columns.</description>
<properties>
<property kind="parameter" name="table-layout" >
<values>,auto,fixed,inherit</values>
<description> auto | fixed | inherit
Initial: auto
Applies to: 'table' and 'inline-table' elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="table-layout">
The 'table-layout' property controls the algorithm used to lay out the table cells, rows, and columns. Values have the following meaning:
fixed: Use the fixed table layout algorithm
auto: Use any automatic table layout algorithm
see http://www.w3.org/TR/REC-CSS2/tables.html#propdef-table-layout
</note>
</element>
</group>
<group name="text">
<description>more info, see :
http://www.w3.org/TR/REC-CSS2/text.html</description>
<element kind="css_property" name="text-align">
<description>Describes how inline content of a block is aligned.</description>
<properties>
<property kind="parameter" name="text-align" >
<values>"",left,right,center,justify,inherit</values>
<description>left | right | center | justify | <string> | inherit
Initial: depends on user agent and writing direction
Applies to: block-level elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="text-align">
This property describes how inline content of a block is aligned. Values have the following meanings:
left, right, center, and justify: Left, right, center, and double justify text, respectively.
<string>: Specifies a string on which cells in a table column will align (see the section on horizontal alignment in a column for details and an example). This value applies only to table cells. If set on other elements, it will be treated as 'left' or 'right', depending on whether 'direction' is 'ltr', or 'rtl', respectively.
A block of text is a stack of line boxes. In the case of 'left', 'right' and 'center', this property specifies how the inline boxes within each line box align with respect to the line box's left and right sides; alignment is not with respect to the viewport. In the case of 'justify', the UA may stretch the inline boxes in addition to adjusting their positions. (See also 'letter-spacing' and 'word-spacing'.)
</note>
</element>
text-decoration
<element kind="css_property" name="text-decoration">
<description>Describes decorations that are added to the text of an element.</description>
<properties>
<property kind="parameter" name="text-decoration" >
<values>,none,underline,overline,underline overline,line-through,blink,inherit</values>
<description>none | [ underline || overline || line-through || blink ] | inherit
Initial: none
Applies to: all elements
Inherited: no (see Notes)
Percentages: N/A
</description>
</property>
</properties>
<note title="text-decoration">
This property describes decorations that are added to the text of an element. If the property is specified for a block-level element, it affects all inline-level descendants of the element. If it is specified for (or affects) an inline-level element, it affects all boxes generated by the element. If the element has no content or no text content (e.g., the IMG element in HTML), user agents must ignore this property.
Values have the following meanings:
none: Produces no text decoration.
underline: Each line of text is underlined.
overline: Each line of text has a line above it.
line-through: Each line of text has a line through the middle
blink: Text blinks (alternates between visible and invisible). Conforming user agents are not required to support this value.
The color(s) required for the text decoration should be derived from the 'color' property value.
This property is not inherited, but descendant boxes of a block box should be formatted with the same decoration (e.g., they should all be underlined). The color of decorations should remain the same even if descendant elements have different 'color' values.
</note>
</element>
<element kind="css_property" name="text-indent">
<description>Specifies the indentation of the first line of text in a block.</description>
<properties>
<property kind="parameter" name="text-indent" >
<values>0, %,inherit</values>
<description> <length> | <percentage> | inherit
Initial: 0
Applies to: block-level elements
Inherited: yes
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="text-indent">
This property specifies the indentation of the first line of text in a block. More precisely, it specifies the indentation of the first box that flows into the block's first line box. The box is indented with respect to the left (or right, for right-to-left layout) edge of the line box. User agents should render this indentation as blank space.
Values have the following meanings:
<length>: The indentation is a fixed length.
<percentage>: The indentation is a percentage of the containing block width.
The value of 'text-indent' may be negative, but there may be implementation-specific limits.
</note>
</element>
<element kind="css_property" name="text-shadow">
<description>Accepts a comma-separated list of shadow effects to be applied to the text of the element.</description>
<properties>
<property kind="parameter" name="text-shadow" >
<values>,none,inherit</values>
<description>none | [<color> || <length> <length> <length>? ,]* [<color> || <length> <length> <length>?] | inherit
Initial: none
Applies to: all elements
Inherited: no (see Notes)
Percentages: N/A
</description>
</property>
</properties>
<note title="text-shadow">
This property accepts a comma-separated list of shadow effects to be applied to the text of the element. The shadow effects are applied in the order specified and may thus overlay each other, but they will never overlay the text itself. Shadow effects do not alter the size of a box, but may extend beyond its boundaries. The stack level of the shadow effects is the same as for the element itself.
Each shadow effect must specify a shadow offset and may optionally specify a blur radius and a shadow color.
A shadow offset is specified with two <length> values that indicate the distance from the text. The first length value specifies the horizontal distance to the right of the text. A negative horizontal length value places the shadow to the left of the text. The second length value specifies the vertical distance below the text. A negative vertical length value places the shadow above the text.
A blur radius may optionally be specified after the shadow offset. The blur radius is a length value that indicates the boundaries of the blur effect. The exact algorithm for computing the blur effect is not specified.
A color value may optionally be specified before or after the length values of the shadow effect. The color value will be used as the basis for the shadow effect. If no color is specified, the value of the 'color' property will be used instead.
Text shadows may be used with the :first-letter and :first-line pseudo-elements.
</note>
</element>
<element kind="css_property" name="text-transform">
<description>Controls capitalization effects of an element's text.</description>
<properties>
<property kind="parameter" name="text-transform" >
<values>,capitalize,uppercase,lowercase,none,inherit</values>
<description>capitalize | uppercase | lowercase | none | inherit
Initial: none
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="text-transform">
This property controls capitalization effects of an element's text. Values have the following meanings:
capitalize: Puts the first character of each word in uppercase.
uppercase: Puts all characters of each word in uppercase.
lowercase: Puts all characters of each word in lowercase.
none: No capitalization effects.
</note>
</element>
</group>
<group name="Top - Z-index">
<element kind="css_property" name="top">
<description>Specifies how far a box's top content edge is offset below the top edge of the box's containing block.</description>
<properties>
<property kind="parameter" name="top" >
<values>0, %,auto,inherit</values>
<description> <length> | <percentage> | auto | inherit
Initial: auto
Applies to: positioned elements
Inherited: no
Percentages: refer to heigth of containing block
</description>
</property>
</properties>
<note title="top">
<length>: The offset is a fixed distance from the reference edge.
<percentage>: The offset is a percentage of the containing block's width (for 'left' or 'right') or height (for 'top' and 'bottom'). For 'top' and 'bottom', if the height of the containing block is not specified explicitly (i.e., it depends on content height), the percentage value is interpreted like 'auto'.
auto: The effect of this value depends on which of related properties have the value 'auto' as well. See the sections on the width and height of absolutely positioned, non-replaced elements for details.
For absolutely positioned boxes, the offsets are with respect to the box's containing block. For relatively positioned boxes, the offsets are with respect to the outer edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties).
</note>
</element>
<element kind="css_property" name="unicode-bidi">
<description>For the 'direction' property to have any effect on inline-level elements, the 'unicode-bidi' property's value must be 'embed' or 'override'.</description>
<properties>
<property kind="parameter" name="unicode-bidi" >
<values>,normal,embed,bidi-override,inherit</values>
<description>normal | embed | bidi-override | inherit
Initial: normal
Applies to: all elements, but see Notes
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="unicode-bidi">
Values for this property have the following meanings:
normal: The element does not open an additional level of embedding with respect to the bidirectional algorithm. For inline-level elements, implicit reordering works across element boundaries.
embed: If the element is inline-level, this value opens an additional level of embedding with respect to the bidirectional algorithm. The direction of this embedding level is given by the 'direction' property. Inside the element, reordering is done implicitly. This corresponds to adding a LRE (U+202A; for 'direction: ltr') or RLE (U+202B; for 'direction: rtl') at the start of the element and a PDF (U+202C) at the end of the element.
bidi-override: If the element is inline-level or a block-level element that contains only inline-level elements, this creates an override. This means that inside the element, reordering is strictly in sequence according to the 'direction' property; the implicit part of the bidirectional algorithm is ignored. This corresponds to adding a LRO (U+202D; for 'direction: ltr') or RLO (U+202E; for 'direction: rtl') at the start of the element and a PDF (U+202C) at the end of the element.
see http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-unicode-bidi
</note>
</element>
<element kind="css_property" name="vertical-align">
<description>Affects the vertical positioning inside a line box of the boxes generated by an inline-level element.</description>
<properties>
<property kind="parameter" name="vertical-align" >
<values>baseline,sub,super,top,text-top,middle,bottom,text-bottom, %,0,inherit</values>
<description>baseline | sub | super | top | text-top | middle | bottom | text-bottom | <percentage> | <length> | inherit
Initial: baseline
Applies to: inline-level and 'table-cell' elements
Inherited: no
Percentages: refer to the 'line-height' of the element itself
</description>
</property>
</properties>
<note title="vertical-align">
This property affects the vertical positioning inside a line box of the boxes generated by an inline-level element. The following values only have meaning with respect to a parent inline-level element, or to a parent block-level element, if that element generates anonymous inline boxes; they have no effect if no such parent exists.
Note. Values of this property have slightly different meanings in the context of tables. Please consult the section on table height algorithms for details.
baseline: Align the baseline of the box with the baseline of the parent box. If the box doesn't have a baseline, align the bottom of the box with the parent's baseline.
middle: Align the vertical midpoint of the box with the baseline of the parent box plus half the x-height of the parent.
sub: Lower the baseline of the box to the proper position for subscripts of the parent's box. (This value has no effect on the font size of the element's text.)
super: Raise the baseline of the box to the proper position for superscripts of the parent's box. (This value has no effect on the font size of the element's text.)
text-top
Align the top of the box with the top of the parent element's font.
text-bottom
Align the bottom of the box with the bottom of the parent element's font.
<percentage>: Raise (positive value) or lower (negative value) the box by this distance (a percentage of the 'line-height' value). The value '0%' means the same as 'baseline'.
<length>: Raise (positive value) or lower (negative value) the box by this distance. The value '0cm' means the same as 'baseline'.
The remaining values refer to the line box in which the generated box appears:
top: Align the top of the box with the top of the line box.
bottom: Align the bottom of the box with the bottom of the line box.
</note>
</element>
<element kind="css_property" name="visibility">
<description>Specifies whether the boxes generated by an element are rendered.</description>
<properties>
<property kind="parameter" name="visibility" >
<values>,visible,hidden,collapse,inherit</values>
<description>visible | hidden | collapse | inherit
Initial: inherit
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="visibility">
The 'visibility' property specifies whether the boxes generated by an element are rendered. Invisible boxes still affect layout (set the 'display' property to 'none' to suppress box generation altogether). Values have the following meanings:
visible: The generated box is visible.
hidden: The generated box is invisible (fully transparent), but still affects layout.
collapse: Please consult the section on dynamic row and column effects in tables. If used on elements other than rows or columns, 'collapse' has the same meaning as 'hidden'.
This property may be used in conjunction with scripts to create dynamic effects.
</note>
</element>
<element kind="css_property" name="white-space">
<description>Declares how whitespace inside the element is handled.</description>
<properties>
<property kind="parameter" name="white-space" >
<values>,normal,pre,nowrap,inherit</values>
<description>normal | pre | nowrap | inherit
Initial: normal
Applies to: block-level elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="white-space">
This property declares how whitespace inside the element is handled. Values have the following meanings:
normal: This value directs user agents to collapse sequences of whitespace, and break lines as necessary to fill line boxes. Additional line breaks may be created by occurrences of "\A" in generated content (e.g., for the BR element in HTML).
pre: This value prevents user agents from collapsing sequences of whitespace. Lines are only broken at newlines in the source, or at occurrences of "\A" in generated content.
nowrap: This value collapses whitespace as for 'normal', but suppresses line breaks within text except for those created by "\A" in generated content (e.g., for the BR element in HTML).
</note>
</element>
<element kind="css_property" name="widows">
<description>Specifies the minimum number of lines of a paragraph that must be left at the top of a page.</description>
<properties>
<property kind="parameter" name="widows" >
<values>2,inherit</values>
<description> <integer> | inherit
Initial: 2
Applies to: block-level elements
Inherited: yes
Percentages: N/A
Media: visual, paged
</description>
</property>
</properties>
<note title="widows">
The 'orphans' property specifies the minimum number of lines of a paragraph that must be left at the bottom of a page. The 'widows' property specifies the minimum number of lines of a paragraph that must be left at the top of a page. Examples of how they are used to control page breaks are given below.
For information about paragraph formatting, please consult the section on line boxes. http://www.w3.org/TR/REC-CSS2/visuren.html#line-box
</note>
</element>
<element kind="css_property" name="width">
<description>Specifies the content width of boxes generated by block-level and replaced elements.</description>
<properties>
<property kind="parameter" name="width" >
<values>0, %,auto,inherit</values>
<description> <length> | <percentage> | auto | inherit
Initial: auto
Applies to: all elements but non-replaced inline elements, table rows, and row groups
Inherited: no
Percentages: refer to width of containing block
</description>
</property>
</properties>
<note title="width">
<length>: Specifies a fixed width.
<percentage>: Specifies a percentage width. The percentage is calculated with respect to the width of the generated box's containing block.
auto
The width depends on the values of other properties. See http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-width
Negative values for 'width' are illegal.
</note>
</element>
<element kind="css_property" name="word-spacing">
<description>Specifies spacing behavior between words.</description>
<properties>
<property kind="parameter" name="word-spacing" >
<values>normal,0,inherit</values>
<description>normal | <length> | inherit
Initial: normal
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="word-spacing">
This property specifies spacing behavior between words. Values have the following meanings:
normal: The normal inter-word space, as defined by the current font and/or the UA.
<length>: This value indicates inter-word space in addition to the default space between words. Values may be negative, but there may be implementation-specific limits.
Word spacing algorithms are user agent-dependent. Word spacing is also influenced by justification (see the 'text-align' property).
</note>
</element>
<element kind="css_property" name="z-index">
<description>Specifies the stack level.</description>
<properties>
<property kind="parameter" name="z-index" >
<values>auto,0,inherit</values>
<description>auto | <integer> | inherit
Initial: auto
Applies to: positioned elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="z-index">
For a positioned box, the 'z-index' property specifies:
1. The stack level of the box in the current stacking context.
2. Whether the box establishes a local stacking context.
Values have the following meanings:
<integer>: This integer is the stack level of the generated box in the current stacking context. The box also establishes a local stacking context in which its stack level is '0'.
auto: The stack level of the generated box in the current stacking context is the same as its parent's box. The box does not establish a new local stacking context.
</note>
</element>
</group>
</group>
<group name="Aural">
<description>more info, see :
http://www.w3.org/TR/REC-CSS2/aural.html</description>
<element kind="css_property" name="azimuth">
<description>This property is most likely to be implemented by mixing the same signal into different channels at differing volumes.</description>
<properties>
<property kind="parameter" name="azimuth" >
<values> deg,left-side,far-left,left,center-left,center,center-right,right,far-right,right-side,left-side behind,far-left behind,left behind,center-left behind,center behind,center-right behind,right behind,far-right behind,right-side behind,leftwards,rightwards,inherit</values>
<description> <angle> | [[ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards | inherit
Initial: center
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="azimuth">
<angle>: Position is described in terms of an angle within the range '-360deg' to '360deg'. The value '0deg' means directly ahead in the center of the sound stage. '90deg' is to the right, '180deg' behind, and '270deg' (or, equivalently and more conveniently, '-90deg') to the left.
left-side: Same as '270deg'. With 'behind', '270deg'.
far-left: Same as '300deg'. With 'behind', '240deg'.
left: Same as '320deg'. With 'behind', '220deg'.
center-left: Same as '340deg'. With 'behind', '200deg'.
center: Same as '0deg'. With 'behind', '180deg'.
center-right: Same as '20deg'. With 'behind', '160deg'.
right: Same as '40deg'. With 'behind', '140deg'.
far-right: Same as '60deg'. With 'behind', '120deg'.
right-side: Same as '90deg'. With 'behind', '90deg'.
leftwards: Moves the sound to the left, relative to the current angle. More precisely, subtracts 20 degrees. Arithmetic is carried out modulo 360 degrees. Note that 'leftwards' is more accurately described as "turned counter-clockwise," since it always subtracts 20 degrees, even if the inherited azimuth is already behind the listener (in which case the sound actually appears to move to the right).
rightwards: Moves the sound to the right, relative to the current angle. More precisely, adds 20 degrees. See 'leftwards' for arithmetic.
This property is most likely to be implemented by mixing the same signal into different channels at differing volumes. It might also use phase shifting, digital delay, and other such techniques to provide the illusion of a sound stage. The precise means used to achieve this effect and the number of speakers used to do so are user agent-dependent; this property merely identifies the desired end result.
</note>
</element>
<element kind="css_property" name="cue">
<description>Shorthand for setting 'cue-before' and 'cue-after'. If two values are given, the first value is 'cue-before' and the second is 'cue-after'. If only one value is given, it applies to both properties.</description>
<properties>
<property kind="parameter" name="cue" >
<values>url(),url() url(),inherit</values>
<description> [ <'cue-before'> || <'cue-after'> ] | inherit
Initial: not defined for shorthand properties
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="cue">
The 'cue' property is a shorthand for setting 'cue-before' and 'cue-after'. If two values are given, the first value is 'cue-before' and the second is 'cue-after'. If only one value is given, it applies to both properties.
</note>
</element>
<element kind="css_property" name="cue-after">
<description>Sounds may be played after the element to delimit it.</description>
<properties>
<property kind="parameter" name="cue-after" >
<values>url(),none,inherit</values>
<description> <uri> | none | inherit
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="cue-after">
Auditory icons are another way to distinguish semantic elements. Sounds may be played before and/or after the element to delimit it. Values have the following meanings:
<uri>: The URI must designate an auditory icon resource. If the URI resolves to something other than an audio file, such as an image, the resource should be ignored and the property treated as if it had the value 'none'.
none: No auditory icon is specified.
</note>
</element>
<element kind="css_property" name="cue-before">
<description>Sounds may be played before the element to delimit it.</description>
<properties>
<property kind="parameter" name="cue-before" >
<values>url(),none,inherit</values>
<description> <uri> | none | inherit
Initial: none
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="cue-before">
Auditory icons are another way to distinguish semantic elements. Sounds may be played before and/or after the element to delimit it. Values have the following meanings:
<uri>: The URI must designate an auditory icon resource. If the URI resolves to something other than an audio file, such as an image, the resource should be ignored and the property treated as if it had the value 'none'.
none: No auditory icon is specified.
</note>
</element>
<element kind="css_property" name="elevation">
<description>The precise means used to achieve this effect and the number of speakers used to do so are undefined. This property merely identifies the desired end result.</description>
<properties>
<property kind="parameter" name="elevation" >
<values> deg,below,level,above,higher,lower,inherit</values>
<description> <angle> | below | level | above | higher | lower | inherit
Initial: level
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="elevation">
</note>
</element>
<element kind="css_property" name="pause">
<description>Shorthand for setting 'pause-before' and 'pause-after'. If two values are given, the first value is 'pause-before' and the second is 'pause-after'. If only one value is given, it applies to both properties.</description>
<properties>
<property kind="parameter" name="pause" >
<values> ms, %, ms ms, % %, ms %, % ms,inherit</values>
<description> [ [<time> | <percentage>]{1,2} ] | inherit
Initial: depends on user agent
Applies to: all elements
Inherited: no
Percentages: see Notess of 'pause-before' and 'pause-after'
</description>
</property>
</properties>
<note title="pause">
The 'pause' property is a shorthand for setting 'pause-before' and 'pause-after'. If two values are given, the first value is 'pause-before' and the second is 'pause-after'. If only one value is given, it applies to both properties.
Time unit identifiers are: ms: milliseconds, s: seconds
format is a number immediately followed by a time unit identifier.
Time values may not be negative.
</note>
</element>
<element kind="css_property" name="pause-after">
<description>Specifies a pause to be observed after speaking an element's content.</description>
<properties>
<property kind="parameter" name="pause-after" >
<values> ms, %,inherit</values>
<description> <time> | <percentage> | inherit
Initial: depends on user agent
Applies to: all elements
Inherited: no
Percentages: see Notes
</description>
</property>
</properties>
<note title="pause-after">
specify a pause to be observed after speaking an element's content. Values have the following meanings:
<time>: Expresses the pause in absolute time units (seconds and milliseconds).
Time unit identifiers are: ms: milliseconds, s: seconds
format is a number immediately followed by a time unit identifier.
Time values may not be negative.
<percentage>: Refers to the inverse of the value of the 'speech-rate' property. For example, if the speech-rate is 120 words per minute (i.e., a word takes half a second, or 500ms) then a 'pause-before' of 100% means a pause of 500 ms and a 'pause-before' of 20% means 100ms.
The pause is inserted between the element's content and any 'cue-before' or 'cue-after' content.
Authors should use relative units to create more robust style sheets in the face of large changes in speech-rate.
</note>
</element>
<element kind="css_property" name="pause-before">
<description>Specifies a pause to be observed before speaking an element's content.</description>
<properties>
<property kind="parameter" name="pause-before" >
<values> ms, %,inherit</values>
<description> <time> | <percentage> | inherit
Initial: depends on user agent
Applies to: all elements
Inherited: no
Percentages: see Notes
</description>
</property>
</properties>
<note title="pause-before">
specify a pause to be observed before speaking an element's content. Values have the following meanings:
<time>: Expresses the pause in absolute time units (seconds and milliseconds).
Time unit identifiers are: ms: milliseconds, s: seconds
format is a number immediately followed by a time unit identifier.
Time values may not be negative.
<percentage>: Refers to the inverse of the value of the 'speech-rate' property. For example, if the speech-rate is 120 words per minute (i.e., a word takes half a second, or 500ms) then a 'pause-before' of 100% means a pause of 500 ms and a 'pause-before' of 20% means 100ms.
The pause is inserted between the element's content and any 'cue-before' or 'cue-after' content.
Authors should use relative units to create more robust style sheets in the face of large changes in speech-rate.
</note>
</element>
<element kind="css_property" name="pitch">
<description>Specifies the average pitch (a frequency) of the speaking voice. The average pitch of a voice depends on the voice family. For example, the average pitch for a standard male voice is around 120Hz, but for a female voice, it's around 210Hz.</description>
<properties>
<property kind="parameter" name="pitch" >
<values> Hz, kHz,x-low,low,medium,high,x-high,inherit</values>
<description> <frequency> | x-low | low | medium | high | x-high | inherit
Initial: medium
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="pitch">
Specifies the average pitch (a frequency) of the speaking voice. The average pitch of a voice depends on the voice family. For example, the average pitch for a standard male voice is around 120Hz, but for a female voice, it's around 210Hz.
Values have the following meanings:
<frequency>: Specifies the average pitch of the speaking voice in hertz (Hz).
x-low, low, medium, high, x-high: These values do not map to absolute frequencies since these values depend on the voice family. User agents should map these values to appropriate frequencies based on the voice family and user environment. However, user agents must map these values in order (i.e., 'x-low' is a lower frequency than 'low', etc.).
</note>
</element>
<element kind="css_property" name="pitch-range">
<description>Specifies variation in average pitch.</description>
<properties>
<property kind="parameter" name="pitch-range" >
<values>50,inherit</values>
<description> <number> | inherit
Initial: 50
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="pitch-range">
Specifies variation in average pitch. The perceived pitch of a human voice is determined by the fundamental frequency and typically has a value of 120Hz for a male voice and 210Hz for a female voice. Human languages are spoken with varying inflection and pitch; these variations convey additional meaning and emphasis. Thus, a highly animated voice, i.e., one that is heavily inflected, displays a high pitch range. This property specifies the range over which these variations occur, i.e., how much the fundamental frequency may deviate from the average pitch.
Values have the following meanings:
<number>: A value between '0' and '100'. A pitch range of '0' produces a flat, monotonic voice. A pitch range of 50 produces normal inflection. Pitch ranges greater than 50 produce animated voices.
</note>
</element>
<element kind="css_property" name="play-during">
<description>Specifies a sound to be played as a background while an element's content is spoken.</description>
<properties>
<property kind="parameter" name="play-during" >
<values>url(),url() mix,url() repeat,url() mix repeat,auto,none,inherit</values>
<description> <uri> mix? repeat? | auto | none | inherit
Initial: auto
Applies to: all elements
Inherited: no
Percentages: N/A
</description>
</property>
</properties>
<note title="play-during">
Similar to the 'cue-before' and 'cue-after' properties, this property specifies a sound to be played as a background while an element's content is spoken. Values have the following meanings:
<uri>: The sound designated by this <uri> is played as a background while the element's content is spoken.
mix: When present, this keyword means that the sound inherited from the parent element's 'play-during' property continues to play and the sound designated by the <uri> is mixed with it. If 'mix' is not specified, the element's background sound replaces the parent's.
repeat: When present, this keyword means that the sound will repeat if it is too short to fill the entire duration of the element. Otherwise, the sound plays once and then stops. This is similar to the 'background-repeat' property. If the sound is too long for the element, it is clipped once the element has been spoken.
auto: The sound of the parent element continues to play (it is not restarted, which would have been the case if this property had been inherited).
none: This keyword means that there is silence. The sound of the parent element (if any) is silent during the current element and continues after the current element.
</note>
</element>
<element kind="css_property" name="richness">
<description>Specifies the richness, or brightness, of the speaking voice.</description>
<properties>
<property kind="parameter" name="richness" >
<values>50,inherit</values>
<description> <number> | inherit
Initial: 50
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="richness">
Specifies the richness, or brightness, of the speaking voice. A rich voice will "carry" in a large room, a smooth voice will not. (The term "smooth" refers to how the wave form looks when drawn.)
<number>: A value between '0' and '100'. The higher the value, the more the voice will carry. A lower value will produce a soft, mellifluous voice.
</note>
</element>
<element kind="css_property" name="speak">
<description>Specifies whether text will be rendered aurally and if so, in what manner (somewhat analogous to the 'display' property).</description>
<properties>
<property kind="parameter" name="speak" >
<values>,normal,none,spell-out,inherit</values>
<description>normal | none | spell-out | inherit
Initial: normal
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="speak">
his property specifies whether text will be rendered aurally and if so, in what manner (somewhat analogous to the 'display' property). The possible values are:
none: Suppresses aural rendering so that the element requires no time to render. Note, however, that descendants may override this value and will be spoken. (To be sure to suppress rendering of an element and its descendants, use the 'display' property).
normal: Uses language-dependent pronunciation rules for rendering an element and its children.
spell-out: Spells the text one letter at a time (useful for acronyms and abbreviations).
Note the difference between an element whose 'volume' property has a value of 'silent' and an element whose 'speak' property has the value 'none'. The former takes up the same time as if it had been spoken, including any pause before and after the element, but no sound is generated. The latter requires no time and is not rendered (though its descendants may be).
</note>
</element>
<element kind="css_property" name="speak-header">
<description>Specifies whether table headers are spoken before every cell, or only before a cell when that cell is associated with a different header than the previous cell.</description>
<properties>
<property kind="parameter" name="speak-header" >
<values>,once,always,inherit</values>
<description>once | always | inherit
Initial: once
Applies to: elements that have table header information
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="speak-header">
This property specifies whether table headers are spoken before every cell, or only before a cell when that cell is associated with a different header than the previous cell. Values have the following meanings:
once: The header is spoken one time, before a series of cells.
always: The header is spoken before every pertinent cell.
Each document language may have different mechanisms that allow authors to specify headers. For example, in HTML 4.0 ([HTML40]), it is possible to specify header information with three different attributes ("headers", "scope", and "axis"), and the specification gives an algorithm for determining header information when these attributes have not been specified.
</note>
</element>
<element kind="css_property" name="speak-numeral">
<description>Controls how numerals are spoken.</description>
<properties>
<property kind="parameter" name="speak-numeral" >
<values>,digits,continuous,inherit</values>
<description>digits | continuous | inherit
Initial: continuous
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="speak-numeral">
This property controls how numerals are spoken. Values have the following meanings:
digits: Speak the numeral as individual digits. Thus, "237" is spoken "Two Three Seven".
continuous: Speak the numeral as a full number. Thus, "237" is spoken "Two hundred thirty seven". Word representations are language-dependent.
</note>
</element>
<element kind="css_property" name="speak-punctuation">
<description>Specifies how punctuation is spoken.</description>
<properties>
<property kind="parameter" name="speak-punctuation" >
<values>,code,none,inherit</values>
<description>code | none | inherit
Initial: none
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="speak-punctuation">
This property specifies how punctuation is spoken. Values have the following meanings:
code: Punctuation such as semicolons, braces, and so on are to be spoken literally.
none: Punctuation is not to be spoken, but instead rendered naturally as various pauses.
</note>
</element>
<element kind="css_property" name="speech-rate">
<description>Specifies the speaking rate.</description>
<properties>
<property kind="parameter" name="speech-rate" >
<values>10,x-slow,slow,medium,fast,x-fast,faster,slower,inherit</values>
<description> <number> | x-slow | slow | medium | fast | x-fast | faster | slower | inherit
Initial: medium
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="speech-rate">
<number>: Specifies the speaking rate in words per minute, a quantity that varies somewhat by language but is nevertheless widely supported by speech synthesizers.
x-slow: Same as 80 words per minute.
slow: Same as 120 words per minute
medium: Same as 180 - 200 words per minute.
fast: Same as 300 words per minute.
x-fast: Same as 500 words per minute.
faster: Adds 40 words per minute to the current speech rate.
slower: Subtracts 40 words per minutes from the current speech rate.
</note>
</element>
<element kind="css_property" name="stress">
<description>Specifies the richness, or brightness, of the speaking voice.</description>
<properties>
<property kind="parameter" name="stress" >
<values>50,inherit</values>
<description> <number> | inherit
Initial: 50
Applies to: all elements
Inherited: yes
Percentages: N/A
</description>
</property>
</properties>
<note title="stress">
Specifies the height of "local peaks" in the intonation contour of a voice. For example, English is a stressed language, and different parts of a sentence are assigned primary, secondary, or tertiary stress. The value of 'stress' controls the amount of inflection that results from these stress markers. This property is a companion to the 'pitch-range' property and is provided to allow developers to exploit higher-end auditory displays.
Values have the following meanings:
<number>: A value, between '0' and '100'. The meaning of values depends on the language being spoken. For example, a level of '50' for a standard, English-speaking male voice (average pitch = 122Hz), speaking with normal intonation and emphasis would have a different meaning than '50' for an Italian voice.
</note>
</element>
<element kind="css_property" name="voice-family">
<description>Comma-separated, prioritized list of voice family names (compare with 'font-family').</description>
<properties>
<property kind="parameter" name="specific-voice" >
<values>'',comedian, trinoids, carlos, lani,romeo,juliet</values>
<description> <specific-voice>
</description>
</property>
<property kind="parameter" name="generic-voice" >
<values>,male,female,child</values>
<description> <generic-voice>
</description>
</property>
</properties>
<note title="voice-family">
[[<specific-voice> | <generic-voice> ],]* [<specific-voice> | <generic-voice> ] | inherit
Initial: depends on user agent
Applies to: all elements
Inherited: yes
Percentages: N/A
Names of specific voices may be quoted, and indeed must be quoted if any of the words that make up the name does not conform to the syntax rules for identifiers. It is also recommended to quote specific voices with a name consisting of more than one word. If quoting is omitted, any whitespace characters before and after the font name are ignored and any sequence of whitespace characters inside the font name is converted to a single space.
</note>
</element>
<element kind="css_property" name="volume">
<description>Refers to the median volume of the waveform.</description>
<properties>
<property kind="parameter" name="volume" >
<values>10, %,silent,x-soft,soft,medium,loud,x-loud,inherit</values>
<description> <number> | <percentage> | silent | x-soft | soft | medium | loud | x-loud | inherit
Initial: medium
Applies to: all elements
Inherited: yes
Percentages: refer to inherited value
</description>
</property>
</properties>
<note title="volume">
Volume refers to the median volume of the waveform. In other words, a highly inflected voice at a volume of 50 might peak well above that. The overall values are likely to be human adjustable for comfort, for example with a physical volume control (which would increase both the 0 and 100 values proportionately); what this property does is adjust the dynamic range.
Values have the following meanings:
<number>: Any number between '0' and '100'. '0' represents the minimum audible volume level and 100 corresponds to the maximum comfortable level.
<percentage>: Percentage values are calculated relative to the inherited value, and are then clipped to the range '0' to '100'.
silent: No sound at all. The value '0' does not mean the same as 'silent'.
x-soft: Same as '0'.
soft: Same as '25'.
medium: Same as '50'.
loud: Same as '75'.
x-loud: Same as '100'.
see http://www.w3.org/TR/REC-CSS2/aural.html#propdef-volume
</note>
</element>
</group>
<element kind="css_property" name="Paged: see Visual">
</element>
<element kind="css_property" name="Interactive: see Visual">
</element>
</ref>
|