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
|
a {
background: round no-repeat border-box top left, content-box, padding-box padding-box 10% repeat none, url("test.png") round no-repeat, border-box center / auto auto linear-gradient(pink, purple), none padding-box round no-repeat 5px bottom, round no-repeat top left padding-box, padding-box none round no-repeat #ADF 5px bottom / 10%;
}
b {
background: 10% border-box, content-box content-box round no-repeat 10%, linear-gradient(pink, purple) 5px bottom padding-box content-box, repeat 10% / 10% none content-box content-box, border-box round no-repeat top left / cover, round no-repeat top left / 10% content-box padding-box, border-box round no-repeat top left none, center border-box url("test.png") round no-repeat, border-box border-box none repeat center;
}
c {
background: round no-repeat none padding-box top left / auto auto, round no-repeat center, padding-box, repeat none padding-box, content-box padding-box top left / cover url("test.png") round no-repeat, content-box content-box round no-repeat, round no-repeat 10% none, @home border-box border-box center url("test.png");
}
d {
background: url("test.png") round no-repeat, linear-gradient(pink, purple) round no-repeat 10% content-box, linear-gradient(pink, purple) repeat top left content-box, url("test.png") 10% padding-box, repeat padding-box 10% / auto auto none, padding-box padding-box url("test.png"), content-box repeat 10% / cover, round no-repeat red;
}
e {
background: round no-repeat 10%, url("test.png") 10% content-box repeat, 5px bottom, url("test.png") 5px bottom padding-box, url("test.png") top left border-box padding-box repeat, url("test.png") center / cover, repeat padding-box, none 10% / auto auto, border-box content-box repeat, center / 10% repeat red padding-box;
}
f {
background: round no-repeat content-box border-box top left, top left none border-box, #ADF content-box none round no-repeat;
}
g {
background: repeat url("test.png") 5px bottom / 10% padding-box border-box, top left content-box content-box round no-repeat url("test.png"), url("test.png") repeat center / cover content-box;
}
h {
background: center / 10% content-box round no-repeat, linear-gradient(pink, purple) repeat 10% content-box padding-box, padding-box repeat linear-gradient(pink, purple) center / cover, none, url("test.png") repeat padding-box 5px bottom, border-box url("test.png") repeat;
}
i {
background: url("test.png") padding-box, alpha(pink, 0.5) round no-repeat top left content-box;
}
j {
background: top left padding-box linear-gradient(pink, purple) repeat, linear-gradient(pink, purple) border-box border-box top left, url("test.png"), alpha(pink, 0.5) round no-repeat none;
}
k {
background: repeat top left / 10% none content-box, top left border-box padding-box repeat, center / 10% content-box content-box url("test.png"), top left / cover border-box linear-gradient(pink, purple), content-box padding-box repeat none, url("test.png") repeat, round no-repeat padding-box top left none, content-box content-box 10% repeat;
}
l {
background: border-box url("test.png"), round no-repeat padding-box content-box top left, repeat 10% content-box, linear-gradient(pink, purple) padding-box 10% @home repeat;
}
m {
background: content-box padding-box repeat none center, repeat linear-gradient(pink, purple);
}
n {
background: 10% round no-repeat, none repeat padding-box content-box, content-box center / 10% repeat, top left round no-repeat none, content-box border-box round no-repeat linear-gradient(pink, purple) 10%, top left / 10% repeat, padding-box border-box;
}
o {
background: border-box content-box round no-repeat 5px bottom url("test.png"), top left / 10% linear-gradient(pink, purple);
}
p {
background: currentColor content-box content-box 5px bottom / auto auto;
}
q {
background: border-box linear-gradient(pink, purple) 10%, padding-box repeat 10% / cover none, linear-gradient(pink, purple) content-box content-box, repeat, padding-box padding-box repeat 10% / cover, top left linear-gradient(pink, purple) content-box border-box round no-repeat, url("test.png") 5px bottom round no-repeat, top left border-box border-box, content-box repeat center, content-box padding-box center url("test.png") round no-repeat #ADF;
}
r {
background: content-box url("test.png") center round no-repeat, border-box border-box 10% round no-repeat url("test.png"), repeat linear-gradient(pink, purple) content-box, #ADF 5px bottom repeat padding-box content-box;
}
s {
background: round no-repeat padding-box 10%, repeat padding-box content-box, content-box repeat none, round no-repeat top left / 10%, top left repeat url("test.png") padding-box border-box, repeat center url("test.png"), padding-box 5px bottom, center / auto auto content-box round no-repeat url("test.png"), padding-box round no-repeat none center, content-box 5px bottom round no-repeat, linear-gradient(pink, purple) 10% repeat, padding-box 5px bottom repeat url("test.png"), center url("test.png") border-box;
}
t {
background: padding-box url("test.png") 5px bottom / 10% round no-repeat, round no-repeat none alpha(pink, 0.5);
}
u {
background: round no-repeat, border-box repeat currentColor top left / auto auto;
}
v {
background: none padding-box content-box round no-repeat, content-box 5px bottom round no-repeat, center / 10% url("test.png"), center padding-box none, round no-repeat content-box 5px bottom url("test.png"), 10% round no-repeat padding-box, round no-repeat linear-gradient(pink, purple) red content-box padding-box;
}
w {
background: top left linear-gradient(pink, purple), top left none repeat content-box, 10% border-box linear-gradient(pink, purple) round no-repeat, content-box center / auto auto round no-repeat, border-box round no-repeat 10% / 10%, border-box border-box 10%, none round no-repeat, 5px bottom border-box round no-repeat, linear-gradient(pink, purple), linear-gradient(pink, purple) repeat, repeat top left / 10% padding-box, round no-repeat none, linear-gradient(pink, purple), repeat linear-gradient(pink, purple), round no-repeat url("test.png") top left, round no-repeat content-box none top left, 10% repeat, 10% repeat padding-box border-box url("test.png"), round no-repeat center url("test.png"), repeat none center border-box padding-box, padding-box border-box none, padding-box repeat linear-gradient(pink, purple) top left, none border-box, url("test.png") round no-repeat, content-box content-box center / 10% repeat none;
}
x {
background: none content-box round no-repeat 10%, alpha(pink, 0.5) top left;
}
y {
background: repeat 5px bottom / cover, top left / auto auto round no-repeat, round no-repeat 10% / cover content-box none, red padding-box repeat 5px bottom url("test.png");
}
z {
background: linear-gradient(pink, purple) 5px bottom repeat content-box, round no-repeat content-box top left, repeat content-box none top left, center / auto auto padding-box border-box none, padding-box top left none repeat, 5px bottom / 10% padding-box url("test.png") repeat, repeat top left, round no-repeat border-box padding-box 10% none, padding-box repeat linear-gradient(pink, purple) 10%, round no-repeat center border-box, border-box 10% url("test.png"), top left padding-box padding-box, padding-box none, 5px bottom / cover border-box content-box round no-repeat, repeat linear-gradient(pink, purple) padding-box padding-box, url("test.png") content-box 5px bottom / auto auto, round no-repeat none content-box 10%, 5px bottom linear-gradient(pink, purple) border-box repeat, 10% padding-box repeat linear-gradient(pink, purple), padding-box url("test.png") round no-repeat top left, repeat 10% none padding-box, padding-box border-box repeat top left none, center round no-repeat;
}
ab {
background: repeat 5px bottom padding-box padding-box, top left linear-gradient(pink, purple) content-box padding-box, center repeat border-box, 5px bottom round no-repeat, top left / auto auto padding-box content-box none, round no-repeat 5px bottom / 10% content-box, 5px bottom / auto auto border-box, round no-repeat none, url("test.png") round no-repeat top left, url("test.png") content-box, url("test.png") center, border-box border-box url("test.png"), url("test.png") border-box 10%, center url("test.png") border-box, center / cover content-box padding-box round no-repeat, url("test.png") repeat 10% padding-box content-box, none content-box center / auto auto, content-box, linear-gradient(pink, purple) repeat top left / cover, repeat content-box content-box 10%, center border-box, 5px bottom / auto auto linear-gradient(pink, purple) round no-repeat padding-box, repeat 5px bottom, none border-box border-box, content-box round no-repeat, center / auto auto round no-repeat border-box border-box, red linear-gradient(pink, purple) round no-repeat content-box;
}
bb {
background: 5px bottom / 10% content-box, center border-box padding-box repeat, round no-repeat 5px bottom alpha(pink, 0.5) linear-gradient(pink, purple);
}
cb {
background: url("test.png") round no-repeat, padding-box padding-box center none, center repeat linear-gradient(pink, purple) border-box, center / cover padding-box border-box, top left round no-repeat none border-box border-box, round no-repeat 10% / cover border-box border-box, none padding-box padding-box red;
}
db {
background: border-box padding-box @home 5px bottom;
}
eb {
background: none repeat, top left url("test.png") border-box repeat, none border-box padding-box center, content-box 5px bottom / auto auto url("test.png"), none, padding-box 10% url("test.png"), padding-box 10% / 10%, border-box linear-gradient(pink, purple), padding-box linear-gradient(pink, purple) round no-repeat, center none padding-box;
}
fb {
background: border-box 10% round no-repeat, none padding-box center, content-box 5px bottom / auto auto url("test.png"), linear-gradient(pink, purple) 5px bottom / auto auto border-box border-box repeat, padding-box padding-box round no-repeat top left, center repeat url("test.png") content-box, repeat border-box, 5px bottom / auto auto round no-repeat none, top left url("test.png"), border-box padding-box url("test.png") top left / cover, none 5px bottom / auto auto, none 5px bottom repeat, top left content-box border-box repeat, top left url("test.png") repeat content-box content-box, border-box 5px bottom / auto auto, 10% / 10% border-box linear-gradient(pink, purple), repeat 10% url("test.png"), url("test.png") round no-repeat 5px bottom, content-box 5px bottom none, repeat 5px bottom border-box none, padding-box border-box none top left repeat, linear-gradient(pink, purple) padding-box 10% round no-repeat, top left / auto auto content-box repeat url("test.png"), border-box round no-repeat 10% / 10%, center repeat url("test.png"), 5px bottom / cover none padding-box padding-box repeat, repeat top left padding-box none, repeat linear-gradient(pink, purple) 10%, none red round no-repeat;
}
gb {
background: padding-box round no-repeat top left;
}
hb {
background: center border-box padding-box url("test.png") round no-repeat, linear-gradient(pink, purple) padding-box border-box 10% repeat, none 5px bottom repeat content-box, 5px bottom round no-repeat content-box url("test.png"), padding-box linear-gradient(pink, purple) 5px bottom repeat, center padding-box linear-gradient(pink, purple), content-box round no-repeat, content-box 5px bottom url("test.png"), top left padding-box padding-box none round no-repeat;
}
ib {
background: none 5px bottom / 10%, linear-gradient(pink, purple) 5px bottom padding-box round no-repeat;
}
jb {
background: round no-repeat 10% none border-box, round no-repeat 10% none, none round no-repeat center / auto auto, linear-gradient(pink, purple) border-box padding-box top left, round no-repeat, 5px bottom / 10% border-box, border-box linear-gradient(pink, purple) 10% / auto auto, 10% border-box round no-repeat, url("test.png") border-box padding-box, 5px bottom border-box content-box, repeat border-box, linear-gradient(pink, purple) round no-repeat 5px bottom, 10% / cover none padding-box padding-box round no-repeat, linear-gradient(pink, purple) padding-box, #ADF content-box 5px bottom;
}
kb {
background: 5px bottom / auto auto, repeat url("test.png");
}
lb {
background: 5px bottom / 10% none content-box repeat, round no-repeat border-box url("test.png"), center linear-gradient(pink, purple) content-box padding-box round no-repeat, linear-gradient(pink, purple) top left round no-repeat, 10% border-box border-box, center round no-repeat content-box linear-gradient(pink, purple), round no-repeat url("test.png") alpha(pink, 0.5);
}
mb {
background: content-box content-box round no-repeat none, round no-repeat top left, round no-repeat 5px bottom, repeat border-box linear-gradient(pink, purple) center, center padding-box url("test.png"), round no-repeat url("test.png"), repeat padding-box 10%;
}
nb {
background: url("test.png"), content-box repeat, top left padding-box round no-repeat @home;
}
ob {
background: padding-box center round no-repeat, round no-repeat linear-gradient(pink, purple), repeat border-box, url("test.png") repeat content-box, padding-box round no-repeat top left none, border-box padding-box linear-gradient(pink, purple) repeat, padding-box center / cover none, content-box round no-repeat 5px bottom, #ADF round no-repeat url("test.png") top left / 10% border-box padding-box;
}
pb {
background: linear-gradient(pink, purple), 10% none round no-repeat, url("test.png") center currentColor repeat;
}
qb {
background: top left none, url("test.png") border-box content-box center, linear-gradient(pink, purple) border-box content-box top left / 10% repeat, border-box top left alpha(pink, 0.5) repeat;
}
rb {
background: border-box padding-box center none, round no-repeat linear-gradient(pink, purple) 10% content-box, linear-gradient(pink, purple) 5px bottom / 10% repeat, #ADF url("test.png") content-box center;
}
sb {
background: round no-repeat top left none, none round no-repeat content-box padding-box 5px bottom, 5px bottom red round no-repeat;
}
tb {
background: alpha(pink, 0.5) repeat 10%;
}
ub {
background: padding-box, center, repeat 10% border-box linear-gradient(pink, purple), repeat top left, none content-box repeat top left, content-box 5px bottom / 10% url("test.png") alpha(pink, 0.5);
}
vb {
background: 5px bottom round no-repeat;
}
wb {
background: content-box padding-box none repeat, border-box, center border-box content-box, repeat url("test.png") top left padding-box, linear-gradient(pink, purple) round no-repeat content-box padding-box 10%, padding-box round no-repeat top left, top left / auto auto padding-box linear-gradient(pink, purple) @home;
}
xb {
background: url("test.png") 5px bottom / cover border-box #ADF repeat;
}
yb {
background: repeat padding-box, padding-box round no-repeat linear-gradient(pink, purple) 10%, top left / auto auto round no-repeat content-box url("test.png"), repeat content-box center url("test.png"), url("test.png") repeat border-box border-box top left, url("test.png") 10% repeat, round no-repeat linear-gradient(pink, purple) top left, none round no-repeat content-box, url("test.png") 10% / cover padding-box padding-box repeat, border-box repeat top left / 10%, content-box url("test.png") center, top left border-box repeat;
}
zb {
background: padding-box content-box none round no-repeat top left, url("test.png") round no-repeat 10% content-box content-box, repeat 10% padding-box content-box linear-gradient(pink, purple), border-box top left linear-gradient(pink, purple), border-box round no-repeat, top left repeat border-box, top left / cover border-box, content-box round no-repeat 5px bottom / 10%, content-box round no-repeat 5px bottom, round no-repeat border-box 5px bottom / cover linear-gradient(pink, purple), repeat padding-box none 5px bottom, 10% padding-box repeat, linear-gradient(pink, purple) repeat border-box padding-box red;
}
ac {
background: url("test.png") padding-box repeat, round no-repeat top left / 10% url("test.png"), content-box linear-gradient(pink, purple) round no-repeat top left, 5px bottom / 10% round no-repeat linear-gradient(pink, purple), top left content-box repeat red;
}
bc {
background: repeat top left / auto auto, repeat, 10% / 10% padding-box border-box linear-gradient(pink, purple) repeat @home;
}
cc {
background: repeat border-box, border-box content-box center none, round no-repeat none center, 5px bottom / cover round no-repeat none content-box, padding-box content-box center;
}
dc {
background: 5px bottom none content-box round no-repeat, center round no-repeat content-box, 10% url("test.png") border-box repeat, none border-box content-box top left / 10% repeat, repeat padding-box none 10%, 5px bottom round no-repeat content-box, repeat 5px bottom url("test.png") padding-box, repeat none, center padding-box, url("test.png") center border-box padding-box @home;
}
ec {
background: none content-box round no-repeat @home;
}
fc {
background: round no-repeat center / auto auto padding-box, none 5px bottom / 10% content-box, padding-box 10% url("test.png") repeat, repeat border-box none center, round no-repeat content-box center url("test.png"), round no-repeat 10% none, border-box url("test.png"), top left / cover url("test.png") repeat, content-box border-box repeat top left, none padding-box repeat, center repeat none, linear-gradient(pink, purple) center content-box;
}
gc {
background: repeat center, round no-repeat 5px bottom linear-gradient(pink, purple) padding-box, content-box top left / auto auto repeat, url("test.png") 10% repeat;
}
hc {
background: url("test.png") border-box center, none padding-box 5px bottom / auto auto, none, repeat url("test.png") 10% / cover content-box, repeat border-box padding-box center url("test.png"), top left / 10% @home;
}
ic {
background: repeat top left url("test.png") content-box padding-box, center / cover padding-box repeat none, content-box content-box top left url("test.png"), border-box 10% / cover round no-repeat, repeat 10%, repeat 5px bottom content-box, border-box 5px bottom, linear-gradient(pink, purple) content-box top left round no-repeat, content-box url("test.png") round no-repeat, repeat padding-box 5px bottom, 10% / auto auto round no-repeat padding-box, content-box linear-gradient(pink, purple), repeat content-box center #ADF linear-gradient(pink, purple);
}
jc {
background: border-box url("test.png") round no-repeat top left, url("test.png") 10% @home border-box repeat;
}
kc {
background: padding-box currentColor repeat 5px bottom url("test.png");
}
lc {
background: round no-repeat top left / auto auto content-box, center / cover round no-repeat padding-box border-box none, round no-repeat padding-box top left / auto auto linear-gradient(pink, purple), 5px bottom repeat, linear-gradient(pink, purple) center / cover repeat, center repeat content-box none, round no-repeat url("test.png") top left, center content-box url("test.png") #ADF repeat;
}
mc {
background: padding-box none 10%, center, round no-repeat, repeat linear-gradient(pink, purple) padding-box border-box, padding-box padding-box repeat top left / cover, 5px bottom border-box none;
}
nc {
background: content-box 5px bottom, repeat url("test.png") top left / cover, none content-box content-box, padding-box 10% / auto auto url("test.png") repeat currentColor;
}
oc {
background: alpha(pink, 0.5) padding-box none center;
}
pc {
background: repeat border-box url("test.png"), round no-repeat 5px bottom / auto auto linear-gradient(pink, purple) content-box, repeat center red;
}
qc {
background: content-box content-box 5px bottom / auto auto, round no-repeat center / 10% content-box, 10% / auto auto currentColor;
}
rc {
background: padding-box padding-box url("test.png"), 5px bottom url("test.png") padding-box, url("test.png") padding-box repeat 10% / cover, padding-box repeat none top left, none repeat, border-box, url("test.png") round no-repeat content-box;
}
sc {
background: repeat content-box linear-gradient(pink, purple), 10% repeat border-box, border-box url("test.png"), round no-repeat 5px bottom / 10% none, none top left / cover, 5px bottom none repeat, border-box border-box none, none currentColor round no-repeat padding-box;
}
tc {
background: none content-box, 5px bottom, padding-box 5px bottom, padding-box content-box linear-gradient(pink, purple) red;
}
uc {
background: center content-box repeat url("test.png"), 10% linear-gradient(pink, purple) padding-box, round no-repeat url("test.png") content-box padding-box, repeat none, padding-box 10% repeat url("test.png"), round no-repeat content-box content-box top left, round no-repeat padding-box border-box center linear-gradient(pink, purple), round no-repeat url("test.png") 10%, repeat none, round no-repeat 5px bottom / cover url("test.png"), repeat border-box border-box 5px bottom / cover, none padding-box border-box top left, 10% / cover none, linear-gradient(pink, purple), padding-box round no-repeat 10% linear-gradient(pink, purple), center round no-repeat, url("test.png") alpha(pink, 0.5) border-box center;
}
vc {
background: round no-repeat 10% none, repeat url("test.png") 5px bottom, none repeat, repeat border-box, none content-box border-box round no-repeat, round no-repeat 5px bottom padding-box border-box red;
}
wc {
background: repeat border-box padding-box top left linear-gradient(pink, purple), padding-box border-box linear-gradient(pink, purple), 5px bottom round no-repeat border-box none alpha(pink, 0.5);
}
xc {
background: border-box url("test.png") top left repeat;
}
yc {
background: @home;
}
zc {
background: top left / auto auto linear-gradient(pink, purple) red border-box border-box;
}
ad {
background: 5px bottom / cover url("test.png") border-box border-box, repeat padding-box top left, repeat 10% linear-gradient(pink, purple), top left, repeat padding-box;
}
bd {
background: linear-gradient(pink, purple) round no-repeat 10%;
}
cd {
background: url("test.png") repeat, none round no-repeat padding-box center, 5px bottom padding-box none, round no-repeat border-box, repeat padding-box, round no-repeat content-box, linear-gradient(pink, purple) padding-box content-box round no-repeat, top left content-box, center, none border-box repeat top left, repeat linear-gradient(pink, purple) top left / cover border-box, padding-box border-box repeat 10% / auto auto linear-gradient(pink, purple), currentColor url("test.png");
}
dd {
background: linear-gradient(pink, purple) border-box content-box, url("test.png") border-box round no-repeat;
}
ed {
background: center / auto auto alpha(pink, 0.5) repeat content-box none;
}
fd {
background: repeat border-box, border-box border-box 10% none, 5px bottom, round no-repeat top left, padding-box repeat url("test.png"), padding-box content-box center round no-repeat url("test.png"), url("test.png") repeat top left, border-box border-box url("test.png") top left, content-box, padding-box none repeat center, url("test.png") 10%, top left / auto auto url("test.png") repeat, #ADF center / 10% content-box linear-gradient(pink, purple);
}
gd {
background: round no-repeat border-box 10% / 10%, 10%, none 5px bottom padding-box repeat, 10% round no-repeat, round no-repeat linear-gradient(pink, purple) 5px bottom content-box, 10% / cover repeat content-box;
}
hd {
background: content-box linear-gradient(pink, purple), round no-repeat padding-box 5px bottom / cover, url("test.png") padding-box padding-box 5px bottom, url("test.png") content-box padding-box repeat alpha(pink, 0.5);
}
id {
background: 10% / cover padding-box, none 5px bottom repeat border-box border-box, center / cover linear-gradient(pink, purple) padding-box repeat, border-box round no-repeat url("test.png") top left, border-box repeat url("test.png") top left, 10% border-box padding-box url("test.png") repeat, 10% content-box border-box round no-repeat url("test.png") @home;
}
jd {
background: border-box none repeat 10%, none round no-repeat content-box padding-box currentColor;
}
kd {
background: none center / 10% #ADF padding-box;
}
ld {
background: border-box repeat linear-gradient(pink, purple), 5px bottom none repeat, content-box border-box 5px bottom / cover url("test.png");
}
md {
background: url("test.png") round no-repeat border-box, padding-box padding-box top left, repeat content-box 10%, border-box top left linear-gradient(pink, purple) round no-repeat, none padding-box center / auto auto, none border-box, #ADF linear-gradient(pink, purple) border-box padding-box 5px bottom;
}
nd {
background: url("test.png") 5px bottom / auto auto, red 5px bottom linear-gradient(pink, purple) border-box padding-box;
}
od {
background: linear-gradient(pink, purple) center, padding-box top left round no-repeat, none, repeat 5px bottom, alpha(pink, 0.5) url("test.png");
}
pd {
background: content-box 10% @home round no-repeat;
}
qd {
background: repeat none 5px bottom, center round no-repeat none content-box padding-box, none padding-box border-box #ADF center / 10%;
}
rd {
background: border-box border-box top left repeat url("test.png"), 10% / cover none content-box round no-repeat;
}
sd {
background: 10% none, 10% / auto auto content-box content-box, border-box content-box url("test.png") top left, round no-repeat padding-box 5px bottom, repeat padding-box linear-gradient(pink, purple) top left / 10%, padding-box 10%, content-box none, padding-box 5px bottom / 10%, linear-gradient(pink, purple) border-box center / 10% repeat, repeat center, repeat 5px bottom / 10% linear-gradient(pink, purple) #ADF;
}
td {
background: 10% padding-box repeat, url("test.png") repeat border-box top left, none border-box, repeat top left none padding-box border-box, center round no-repeat url("test.png"), padding-box repeat, round no-repeat 10% url("test.png"), 5px bottom / auto auto round no-repeat none content-box border-box, round no-repeat, center padding-box none, repeat, linear-gradient(pink, purple) repeat content-box border-box, padding-box round no-repeat linear-gradient(pink, purple), padding-box top left / cover none repeat, padding-box padding-box top left repeat none, repeat 10% none, 10% linear-gradient(pink, purple);
}
ud {
background: 10% / 10% border-box none;
}
vd {
background: none;
}
wd {
background: 10% / auto auto round no-repeat, 5px bottom linear-gradient(pink, purple) red border-box repeat;
}
xd {
background: linear-gradient(pink, purple) top left repeat content-box border-box, padding-box none round no-repeat;
}
yd {
background: linear-gradient(pink, purple) padding-box content-box, padding-box 10%, border-box repeat 10% url("test.png"), url("test.png") round no-repeat 10% / 10% padding-box, content-box border-box round no-repeat alpha(pink, 0.5) top left / 10% url("test.png");
}
zd {
background: repeat content-box 10%, 5px bottom content-box none;
}
ae {
background: 10% content-box repeat url("test.png"), none padding-box 5px bottom / cover, repeat padding-box center none, top left padding-box padding-box repeat, content-box none, repeat padding-box padding-box linear-gradient(pink, purple) 5px bottom, 10% / cover content-box, center content-box border-box round no-repeat, top left content-box repeat, padding-box padding-box top left repeat, round no-repeat center / 10% url("test.png"), padding-box 5px bottom;
}
be {
background: linear-gradient(pink, purple) content-box border-box 5px bottom, none 5px bottom @home round no-repeat;
}
ce {
background: round no-repeat top left border-box padding-box linear-gradient(pink, purple);
}
de {
background: border-box url("test.png") round no-repeat 10% / 10%, round no-repeat center, round no-repeat content-box border-box linear-gradient(pink, purple) center / auto auto, linear-gradient(pink, purple) padding-box, url("test.png") border-box border-box center, 5px bottom / auto auto repeat content-box padding-box linear-gradient(pink, purple), linear-gradient(pink, purple) top left, none, linear-gradient(pink, purple) repeat border-box, top left repeat border-box padding-box, 5px bottom round no-repeat border-box, border-box padding-box center repeat, content-box padding-box linear-gradient(pink, purple), 10% / auto auto round no-repeat border-box, 5px bottom / auto auto content-box content-box none @home;
}
ee {
background: 10% / auto auto, none round no-repeat top left, round no-repeat padding-box, none top left content-box, 5px bottom padding-box padding-box, url("test.png") 10%, border-box repeat center, round no-repeat content-box linear-gradient(pink, purple), repeat padding-box center, padding-box center / auto auto;
}
fe {
background: linear-gradient(pink, purple) border-box padding-box, content-box padding-box round no-repeat linear-gradient(pink, purple), repeat 5px bottom url("test.png"), none round no-repeat center, 10% linear-gradient(pink, purple) round no-repeat, url("test.png") repeat content-box, linear-gradient(pink, purple) center / auto auto round no-repeat padding-box content-box, padding-box center / cover repeat none, none content-box currentColor round no-repeat 5px bottom / 10%;
}
ge {
background: 10% round no-repeat border-box padding-box, round no-repeat top left, linear-gradient(pink, purple) content-box 10% / 10% red round no-repeat;
}
he {
background: repeat content-box, border-box border-box center repeat, none 10% repeat, 5px bottom content-box content-box none repeat, content-box, padding-box content-box top left repeat, 10% none content-box, repeat padding-box padding-box center, @home repeat 10% / 10% border-box none;
}
ie {
background: round no-repeat 10% / cover border-box padding-box, center / 10% border-box url("test.png") round no-repeat, repeat center border-box, url("test.png") repeat, round no-repeat 5px bottom / cover linear-gradient(pink, purple);
}
je {
background: content-box center repeat, repeat top left, round no-repeat, round no-repeat url("test.png") 10% / cover, repeat content-box 10% none, center, linear-gradient(pink, purple) repeat border-box, border-box center / cover, round no-repeat, 5px bottom content-box content-box none, border-box url("test.png"), 5px bottom / cover linear-gradient(pink, purple) #ADF;
}
ke {
background: round no-repeat url("test.png") padding-box padding-box 5px bottom, none round no-repeat border-box content-box top left, round no-repeat @home content-box;
}
le {
background: round no-repeat center / cover linear-gradient(pink, purple) currentColor;
}
me {
background: content-box border-box 5px bottom / cover, border-box top left url("test.png"), repeat padding-box, border-box none center / auto auto, none repeat border-box padding-box top left, 10% border-box content-box round no-repeat;
}
ne {
background: border-box round no-repeat 10% / 10%;
}
oe {
background: border-box 5px bottom repeat, round no-repeat padding-box 5px bottom none, round no-repeat padding-box center / auto auto, content-box top left round no-repeat, border-box, 10% / cover content-box repeat url("test.png"), repeat padding-box border-box top left linear-gradient(pink, purple), none padding-box content-box round no-repeat, none top left, none 5px bottom content-box, top left repeat padding-box, 5px bottom padding-box, none padding-box top left / auto auto currentColor;
}
pe {
background: url("test.png") repeat, url("test.png") round no-repeat top left content-box, 5px bottom / auto auto padding-box content-box round no-repeat, center repeat, padding-box, 5px bottom;
}
qe {
background: border-box url("test.png") 5px bottom;
}
re {
background: top left / cover repeat linear-gradient(pink, purple), 5px bottom border-box repeat, url("test.png") repeat, linear-gradient(pink, purple) round no-repeat, none repeat padding-box padding-box, repeat none padding-box top left, url("test.png") 10% / 10% border-box, repeat 5px bottom none, center border-box padding-box linear-gradient(pink, purple) round no-repeat, border-box round no-repeat 10%, content-box padding-box top left / 10% linear-gradient(pink, purple) repeat;
}
se {
background: none round no-repeat content-box center, center border-box, round no-repeat url("test.png") border-box center / cover, padding-box url("test.png"), border-box border-box 5px bottom round no-repeat, none 5px bottom, round no-repeat 10% border-box, linear-gradient(pink, purple) center content-box, repeat padding-box center, border-box linear-gradient(pink, purple), padding-box 5px bottom url("test.png") repeat, center repeat padding-box, repeat border-box, padding-box round no-repeat none center, padding-box round no-repeat, none 5px bottom padding-box round no-repeat, repeat 10% border-box, none content-box 5px bottom round no-repeat, linear-gradient(pink, purple) repeat 5px bottom, round no-repeat 5px bottom / cover none content-box, url("test.png") 5px bottom / cover padding-box, padding-box repeat 5px bottom / cover, border-box padding-box none 10%, repeat center padding-box url("test.png"), round no-repeat linear-gradient(pink, purple), repeat padding-box border-box none #ADF;
}
te {
background: url("test.png") top left, border-box top left / cover repeat linear-gradient(pink, purple), repeat top left linear-gradient(pink, purple), content-box padding-box center none repeat, 5px bottom padding-box content-box round no-repeat, center / cover url("test.png") repeat content-box, padding-box, url("test.png") 10% padding-box, padding-box padding-box round no-repeat center none, content-box border-box round no-repeat 10% none, linear-gradient(pink, purple) 5px bottom content-box padding-box currentColor;
}
ue {
background: center padding-box content-box @home round no-repeat;
}
ve {
background: 5px bottom;
}
we {
background: currentColor round no-repeat none padding-box;
}
xe {
background: repeat center / 10% content-box, padding-box linear-gradient(pink, purple) round no-repeat, #ADF repeat 5px bottom url("test.png");
}
ye {
background: content-box top left, content-box content-box url("test.png"), content-box content-box url("test.png") round no-repeat, padding-box linear-gradient(pink, purple), currentColor round no-repeat content-box;
}
ze {
background: 10% none, border-box center none, url("test.png") content-box 5px bottom, red 10% padding-box border-box url("test.png");
}
af {
background: url("test.png") repeat, none content-box padding-box, 10%, none content-box top left, top left / 10% round no-repeat, border-box center, content-box round no-repeat, url("test.png") padding-box repeat, repeat linear-gradient(pink, purple) border-box, padding-box 10% url("test.png"), content-box content-box repeat none, content-box center repeat linear-gradient(pink, purple), center / 10% round no-repeat border-box border-box none, repeat linear-gradient(pink, purple) content-box center / auto auto, url("test.png") top left / cover border-box, repeat linear-gradient(pink, purple) padding-box, none, content-box content-box repeat none, none, border-box linear-gradient(pink, purple), border-box none round no-repeat, url("test.png") padding-box, repeat none, repeat url("test.png") content-box top left / 10%, center / auto auto round no-repeat padding-box;
}
bf {
background: url("test.png") round no-repeat padding-box top left / 10%;
}
cf {
background: repeat top left / 10% linear-gradient(pink, purple), none content-box content-box, repeat 5px bottom / auto auto border-box linear-gradient(pink, purple), border-box alpha(pink, 0.5) repeat url("test.png");
}
df {
background: top left repeat, 10% border-box linear-gradient(pink, purple), none 10%;
}
ef {
background: #ADF none;
}
ff {
background: 5px bottom content-box border-box none, repeat url("test.png"), center padding-box border-box repeat url("test.png"), content-box top left repeat none, border-box padding-box none center, none repeat, border-box content-box none round no-repeat, top left / cover padding-box url("test.png"), currentColor linear-gradient(pink, purple);
}
gf {
background: padding-box 10% url("test.png"), round no-repeat padding-box content-box url("test.png") 10% / cover, repeat border-box url("test.png") top left / 10%, border-box repeat 10% / auto auto @home;
}
hf {
background: padding-box round no-repeat none center / cover, border-box round no-repeat linear-gradient(pink, purple) 5px bottom, content-box padding-box url("test.png"), url("test.png") border-box content-box, center / 10% round no-repeat, padding-box 5px bottom, content-box padding-box top left, currentColor linear-gradient(pink, purple) round no-repeat padding-box;
}
if {
background: padding-box repeat url("test.png"), repeat none content-box content-box center / 10%, repeat content-box none, round no-repeat 10% / auto auto linear-gradient(pink, purple) border-box border-box, 5px bottom / 10%, round no-repeat border-box padding-box 5px bottom / cover, round no-repeat padding-box top left linear-gradient(pink, purple), none center border-box content-box, center / auto auto round no-repeat, round no-repeat border-box, repeat padding-box 10% none;
}
jf {
background: content-box content-box none center, none content-box, repeat border-box none 5px bottom / cover, 5px bottom / cover repeat content-box url("test.png"), 10% border-box, round no-repeat padding-box url("test.png");
}
kf {
background: padding-box border-box 5px bottom / auto auto, url("test.png") border-box padding-box round no-repeat, round no-repeat url("test.png") 5px bottom, linear-gradient(pink, purple) padding-box 10% / cover, url("test.png") 10% / 10% round no-repeat, @home url("test.png") 5px bottom border-box content-box repeat;
}
lf {
background: alpha(pink, 0.5) content-box content-box repeat center;
}
mf {
background: repeat 10% / auto auto padding-box padding-box;
}
nf {
background: round no-repeat currentColor;
}
of {
background: content-box none top left repeat, round no-repeat top left / 10% border-box linear-gradient(pink, purple), repeat 10% / cover, center content-box content-box url("test.png"), center url("test.png") repeat, linear-gradient(pink, purple) padding-box top left / cover repeat, 5px bottom / cover url("test.png"), border-box padding-box url("test.png") center, none padding-box border-box;
}
pf {
background: center none border-box content-box, repeat none, repeat none 5px bottom content-box, top left linear-gradient(pink, purple), content-box border-box top left linear-gradient(pink, purple) repeat, url("test.png") repeat, url("test.png") padding-box 5px bottom, content-box none 5px bottom, url("test.png") round no-repeat 10% content-box, 10%, repeat linear-gradient(pink, purple) 10% padding-box;
}
qf {
background: none 10% / cover repeat, padding-box border-box linear-gradient(pink, purple) round no-repeat, 5px bottom border-box linear-gradient(pink, purple) repeat, padding-box content-box, linear-gradient(pink, purple), content-box, center linear-gradient(pink, purple), border-box 5px bottom none repeat;
}
rf {
background: repeat 5px bottom, top left / 10% padding-box border-box repeat linear-gradient(pink, purple), center / cover content-box red repeat;
}
sf {
background: padding-box linear-gradient(pink, purple) round no-repeat alpha(pink, 0.5);
}
tf {
background: none content-box padding-box center, 5px bottom none content-box round no-repeat, padding-box round no-repeat top left / cover, repeat linear-gradient(pink, purple), url("test.png") repeat center, repeat content-box 10% / 10% linear-gradient(pink, purple), padding-box content-box 10% round no-repeat, border-box padding-box 5px bottom url("test.png"), none 10% border-box repeat, alpha(pink, 0.5) none border-box padding-box;
}
uf {
background: top left currentColor url("test.png");
}
vf {
background: round no-repeat url("test.png") center padding-box content-box, top left repeat, 10% repeat, url("test.png") 10% padding-box, repeat padding-box border-box, padding-box url("test.png") top left, round no-repeat 10%, linear-gradient(pink, purple) round no-repeat, round no-repeat url("test.png") padding-box center, center round no-repeat;
}
wf {
background: 10% / cover none content-box, none top left repeat, none center;
}
xf {
background: top left round no-repeat content-box border-box, border-box content-box repeat 10% / auto auto, 5px bottom linear-gradient(pink, purple), repeat 5px bottom;
}
yf {
background: padding-box content-box round no-repeat none, linear-gradient(pink, purple) center, padding-box center repeat, repeat padding-box, content-box padding-box round no-repeat, content-box url("test.png"), content-box url("test.png") round no-repeat, round no-repeat linear-gradient(pink, purple) center border-box content-box, url("test.png") 5px bottom round no-repeat, 5px bottom / cover border-box url("test.png") repeat, padding-box round no-repeat top left, repeat border-box top left, linear-gradient(pink, purple), border-box round no-repeat 10%, linear-gradient(pink, purple) repeat padding-box content-box, linear-gradient(pink, purple) round no-repeat border-box content-box, url("test.png") content-box padding-box repeat top left, repeat top left linear-gradient(pink, purple), @home padding-box none;
}
zf {
background: top left border-box round no-repeat, repeat border-box currentColor;
}
ag {
background: alpha(pink, 0.5) repeat top left padding-box border-box;
}
bg {
background: none 10% content-box content-box, round no-repeat, url("test.png") border-box padding-box, 10% none border-box round no-repeat, none top left repeat, url("test.png") border-box border-box top left repeat, padding-box 10% url("test.png"), border-box url("test.png") top left repeat, round no-repeat content-box linear-gradient(pink, purple) 10%, currentColor border-box;
}
cg {
background: none center round no-repeat border-box, repeat 10% / cover, 5px bottom content-box padding-box, repeat content-box border-box none 10% / 10%, repeat #ADF content-box padding-box 5px bottom / 10%;
}
dg {
background: padding-box padding-box repeat center, none content-box 10%;
}
eg {
background: round no-repeat top left / 10% border-box content-box, linear-gradient(pink, purple) round no-repeat center border-box padding-box, top left round no-repeat red;
}
fg {
background: none repeat center padding-box, url("test.png") border-box 5px bottom, @home repeat padding-box 10% url("test.png");
}
gg {
background: top left linear-gradient(pink, purple) content-box round no-repeat, #ADF 10% / cover linear-gradient(pink, purple) content-box round no-repeat;
}
hg {
background: top left / 10% linear-gradient(pink, purple);
}
ig {
background: 10% / auto auto, 10% border-box content-box repeat, 10% linear-gradient(pink, purple) repeat content-box, content-box round no-repeat top left, none top left / 10%, content-box center / auto auto, content-box, border-box 10% / auto auto, 5px bottom, round no-repeat;
}
jg {
background: border-box border-box 10%, repeat padding-box url("test.png") center, padding-box center, border-box center round no-repeat linear-gradient(pink, purple), none round no-repeat, content-box 5px bottom / cover;
}
kg {
background: padding-box linear-gradient(pink, purple) top left / cover, linear-gradient(pink, purple), padding-box round no-repeat center, round no-repeat url("test.png"), 10%, 10% repeat content-box, round no-repeat 10% padding-box padding-box, linear-gradient(pink, purple) @home top left repeat;
}
lg {
background: 5px bottom, top left content-box repeat, 10% / 10% content-box linear-gradient(pink, purple);
}
mg {
background: 5px bottom linear-gradient(pink, purple);
}
ng {
background: center / cover, content-box content-box round no-repeat, linear-gradient(pink, purple) round no-repeat 10%, repeat, center linear-gradient(pink, purple) padding-box content-box, 10% / cover linear-gradient(pink, purple) round no-repeat;
}
og {
background: url("test.png") 10% border-box, center round no-repeat url("test.png") content-box, linear-gradient(pink, purple) content-box center, none padding-box;
}
pg {
background: 5px bottom / 10% linear-gradient(pink, purple) round no-repeat border-box, round no-repeat url("test.png") padding-box 10%, round no-repeat border-box content-box none, 5px bottom round no-repeat border-box none, border-box url("test.png") center, padding-box linear-gradient(pink, purple) top left / 10%, center / 10% padding-box border-box url("test.png"), round no-repeat none padding-box border-box top left, round no-repeat padding-box border-box 10%, round no-repeat content-box 5px bottom, 10% / cover padding-box border-box, repeat content-box padding-box 5px bottom, content-box linear-gradient(pink, purple), content-box url("test.png"), linear-gradient(pink, purple) red center / auto auto;
}
qg {
background: repeat url("test.png") content-box, top left / cover padding-box content-box linear-gradient(pink, purple), 5px bottom none round no-repeat, padding-box, center border-box repeat, top left / auto auto padding-box none, url("test.png") center / cover content-box round no-repeat, padding-box 10% url("test.png") round no-repeat, center none padding-box content-box repeat, top left / cover border-box none round no-repeat, round no-repeat 5px bottom padding-box, url("test.png") border-box round no-repeat 5px bottom, none border-box round no-repeat, #ADF linear-gradient(pink, purple) padding-box round no-repeat;
}
rg {
background: content-box padding-box none round no-repeat #ADF;
}
sg {
background: border-box round no-repeat, 5px bottom / cover round no-repeat content-box padding-box, 10% round no-repeat border-box content-box, top left repeat content-box, alpha(pink, 0.5);
}
tg {
background: border-box content-box top left, repeat none, center content-box repeat currentColor;
}
ug {
background: 10% / 10% linear-gradient(pink, purple), 10% content-box none, linear-gradient(pink, purple) repeat 5px bottom, content-box center / 10% url("test.png") repeat, border-box center linear-gradient(pink, purple), padding-box linear-gradient(pink, purple) top left / auto auto repeat, padding-box round no-repeat linear-gradient(pink, purple), url("test.png") padding-box repeat, 5px bottom / 10% repeat linear-gradient(pink, purple) border-box border-box, url("test.png") 10% padding-box repeat, padding-box repeat 5px bottom / cover linear-gradient(pink, purple) currentColor;
}
vg {
background: 5px bottom / auto auto round no-repeat, red round no-repeat top left / cover;
}
wg {
background: padding-box 10% / cover repeat linear-gradient(pink, purple), padding-box border-box top left, linear-gradient(pink, purple) repeat padding-box center, none 5px bottom content-box, content-box border-box repeat linear-gradient(pink, purple), url("test.png") round no-repeat 5px bottom / 10%, 10% / 10% none, url("test.png") content-box border-box repeat, 10% / cover url("test.png") repeat, 5px bottom linear-gradient(pink, purple), top left repeat content-box, none 5px bottom round no-repeat content-box border-box;
}
xg {
background: 5px bottom url("test.png") repeat padding-box border-box, repeat 5px bottom / cover, 5px bottom padding-box padding-box none repeat, round no-repeat, 5px bottom padding-box round no-repeat none, repeat linear-gradient(pink, purple) top left;
}
yg {
background: center none border-box, none 10% / auto auto border-box, url("test.png") padding-box padding-box 5px bottom, linear-gradient(pink, purple) padding-box content-box, repeat top left, url("test.png") content-box border-box repeat, round no-repeat linear-gradient(pink, purple) padding-box border-box, repeat 5px bottom border-box;
}
zg {
background: 10% / 10% url("test.png") content-box, top left / cover repeat content-box, center / cover border-box content-box url("test.png"), content-box 5px bottom repeat, center, url("test.png") padding-box, repeat content-box url("test.png"), repeat url("test.png") center, top left none border-box alpha(pink, 0.5);
}
ah {
background: padding-box 5px bottom linear-gradient(pink, purple), center round no-repeat border-box content-box, url("test.png") border-box center, 10% / cover padding-box linear-gradient(pink, purple) repeat, round no-repeat content-box padding-box none, content-box padding-box repeat 10%, top left / auto auto, none content-box round no-repeat, red url("test.png") repeat;
}
bh {
background: padding-box center none, round no-repeat linear-gradient(pink, purple), round no-repeat border-box top left / cover;
}
ch {
background: repeat linear-gradient(pink, purple), repeat 5px bottom, repeat 10% / cover padding-box border-box, repeat content-box, repeat top left padding-box content-box, center url("test.png") content-box, content-box content-box linear-gradient(pink, purple) 5px bottom, border-box border-box 5px bottom repeat, 10% / cover border-box, padding-box @home none;
}
dh {
background: repeat 5px bottom / 10% padding-box padding-box, content-box content-box none center / 10%, 10% / auto auto border-box padding-box repeat url("test.png"), 10% padding-box, repeat @home none 5px bottom content-box padding-box;
}
eh {
background: 5px bottom / auto auto url("test.png") border-box, url("test.png") border-box padding-box top left repeat, content-box padding-box top left / cover round no-repeat, padding-box content-box top left / auto auto repeat;
}
fh {
background: center padding-box round no-repeat, 5px bottom url("test.png") #ADF round no-repeat;
}
gh {
background: none center repeat, 5px bottom round no-repeat border-box;
}
hh {
background: repeat url("test.png"), repeat top left padding-box content-box, repeat border-box none center, repeat content-box 5px bottom, padding-box content-box 5px bottom / auto auto red;
}
ih {
background: round no-repeat top left, none border-box top left;
}
jh {
background: round no-repeat content-box center linear-gradient(pink, purple), padding-box 5px bottom / auto auto, padding-box content-box center / 10%, repeat none 10% / auto auto, linear-gradient(pink, purple) center padding-box, top left / cover round no-repeat url("test.png"), center repeat content-box content-box, #ADF content-box url("test.png") 5px bottom / 10%;
}
kh {
background: padding-box;
}
lh {
background: repeat linear-gradient(pink, purple) border-box top left, linear-gradient(pink, purple) currentColor border-box center;
}
mh {
background: linear-gradient(pink, purple) 10% / auto auto border-box round no-repeat;
}
nh {
background: center border-box round no-repeat none, top left repeat linear-gradient(pink, purple), repeat none center, content-box border-box center none, round no-repeat padding-box 5px bottom / 10%, url("test.png") 5px bottom / cover padding-box border-box, 10% none border-box, url("test.png") padding-box padding-box top left repeat, content-box linear-gradient(pink, purple) 5px bottom, currentColor border-box padding-box center repeat;
}
oh {
background: round no-repeat border-box center / auto auto;
}
ph {
background: center / 10% padding-box url("test.png") round no-repeat, content-box content-box url("test.png") top left, round no-repeat padding-box padding-box 10% / cover, 10% repeat url("test.png"), round no-repeat 5px bottom / cover, url("test.png") padding-box content-box round no-repeat center / 10%;
}
qh {
background: content-box top left linear-gradient(pink, purple), center repeat border-box, repeat url("test.png") top left, round no-repeat border-box content-box, top left, border-box border-box center url("test.png") repeat, none center / auto auto border-box padding-box, 5px bottom repeat none, border-box repeat 10%, 10% / cover padding-box url("test.png"), content-box url("test.png") top left, repeat padding-box 10% / 10%, 5px bottom padding-box, none round no-repeat border-box, round no-repeat 10% none content-box, 10% border-box;
}
rh {
background: round no-repeat 10%, repeat top left, content-box linear-gradient(pink, purple) @home round no-repeat;
}
sh {
background: padding-box repeat center none, top left round no-repeat border-box, linear-gradient(pink, purple) round no-repeat 10%, padding-box alpha(pink, 0.5) repeat url("test.png") 10% / cover;
}
th {
background: top left / auto auto round no-repeat none border-box content-box, repeat 5px bottom / cover content-box content-box, round no-repeat border-box none, border-box padding-box repeat, top left repeat border-box, repeat linear-gradient(pink, purple) center / auto auto content-box, 10% currentColor round no-repeat;
}
uh {
background: padding-box #ADF none round no-repeat 5px bottom;
}
vh {
background: round no-repeat padding-box none, 5px bottom content-box round no-repeat, content-box padding-box round no-repeat url("test.png") 5px bottom, 10% / 10% none round no-repeat content-box content-box, padding-box top left, repeat padding-box linear-gradient(pink, purple), border-box none round no-repeat 5px bottom, linear-gradient(pink, purple) content-box border-box round no-repeat, 5px bottom round no-repeat, red 5px bottom border-box padding-box;
}
wh {
background: none 10% round no-repeat content-box, none round no-repeat content-box content-box, 5px bottom linear-gradient(pink, purple) content-box content-box, 10% linear-gradient(pink, purple) repeat, content-box, top left none padding-box, repeat top left, content-box 5px bottom repeat url("test.png"), content-box repeat center, linear-gradient(pink, purple) repeat center, round no-repeat 5px bottom, round no-repeat none padding-box border-box;
}
xh {
background: border-box linear-gradient(pink, purple) center repeat, 5px bottom content-box border-box none, round no-repeat, border-box padding-box, padding-box url("test.png") 10% repeat, center / 10% repeat none alpha(pink, 0.5);
}
yh {
background: border-box repeat linear-gradient(pink, purple), repeat 10% @home;
}
zh {
background: 10% round no-repeat padding-box linear-gradient(pink, purple), repeat content-box padding-box center, round no-repeat none center padding-box, 10% / 10% border-box, repeat 10% border-box padding-box, repeat url("test.png") center / cover, border-box #ADF round no-repeat none 10%;
}
ai {
background: linear-gradient(pink, purple) 10% padding-box round no-repeat, padding-box none repeat center, 10% / 10% repeat content-box, border-box 5px bottom / cover, linear-gradient(pink, purple) border-box, round no-repeat none content-box top left / 10%, top left / 10% border-box round no-repeat, 5px bottom / cover repeat, center / cover padding-box padding-box url("test.png"), 5px bottom padding-box padding-box repeat, repeat padding-box 10% / auto auto, url("test.png") top left / cover, border-box currentColor none round no-repeat;
}
bi {
background: linear-gradient(pink, purple) center / cover repeat content-box, padding-box repeat, repeat padding-box, content-box linear-gradient(pink, purple);
}
ci {
background: repeat center / cover none, border-box 10% repeat, border-box 10% url("test.png") repeat, none round no-repeat center, none round no-repeat padding-box border-box, repeat, border-box linear-gradient(pink, purple) top left round no-repeat, repeat none center #ADF;
}
di {
background: top left none repeat, 10% url("test.png");
}
ei {
background: border-box repeat;
}
fi {
background: @home content-box border-box top left;
}
gi {
background: border-box padding-box 5px bottom / cover, padding-box content-box none center repeat, top left border-box, padding-box repeat top left;
}
hi {
background: 10% / cover padding-box content-box none repeat, content-box @home linear-gradient(pink, purple);
}
ii {
background: content-box content-box round no-repeat linear-gradient(pink, purple), 5px bottom padding-box repeat @home;
}
ji {
background: 5px bottom none padding-box, content-box none round no-repeat, repeat border-box none, round no-repeat padding-box url("test.png");
}
ki {
background: repeat 5px bottom border-box, round no-repeat 10% url("test.png"), none border-box, round no-repeat content-box, round no-repeat 5px bottom border-box, top left / 10% repeat url("test.png") content-box, content-box border-box round no-repeat, 5px bottom / 10% round no-repeat, content-box padding-box repeat linear-gradient(pink, purple) 10%, round no-repeat padding-box top left / cover none, center url("test.png"), round no-repeat url("test.png") content-box top left / auto auto, border-box center @home linear-gradient(pink, purple);
}
li {
background: url("test.png") border-box top left, padding-box 10% round no-repeat, content-box, repeat none content-box 5px bottom, repeat red center url("test.png") padding-box content-box;
}
mi {
background: round no-repeat padding-box, none border-box 10% round no-repeat, repeat linear-gradient(pink, purple) 10%, border-box repeat;
}
ni {
background: top left none, linear-gradient(pink, purple) round no-repeat center border-box, content-box padding-box url("test.png") repeat 5px bottom / 10%, top left / 10% url("test.png") round no-repeat, center / cover padding-box repeat, top left repeat padding-box url("test.png"), center, content-box none, linear-gradient(pink, purple) round no-repeat, top left / 10% repeat content-box padding-box, 10% round no-repeat none, padding-box padding-box, round no-repeat top left, repeat padding-box padding-box center / 10% none, round no-repeat border-box none top left, border-box padding-box none 5px bottom round no-repeat, top left / auto auto padding-box content-box, content-box border-box repeat center none, repeat url("test.png"), padding-box alpha(pink, 0.5) linear-gradient(pink, purple);
}
oi {
background: 5px bottom / auto auto none padding-box padding-box round no-repeat, repeat content-box content-box center / auto auto, url("test.png") 10% repeat, 10% / 10% padding-box none, content-box 10%, top left repeat border-box url("test.png");
}
pi {
background: content-box 5px bottom repeat, repeat content-box content-box, border-box top left @home;
}
qi {
background: repeat border-box linear-gradient(pink, purple) top left / 10%, none 10% / cover content-box, 5px bottom linear-gradient(pink, purple) repeat @home border-box content-box;
}
ri {
background: round no-repeat content-box;
}
si {
background: none top left, 5px bottom / 10%, top left url("test.png") repeat, linear-gradient(pink, purple) border-box round no-repeat, repeat padding-box linear-gradient(pink, purple) 10% / 10%, padding-box none top left @home round no-repeat;
}
ti {
background: content-box padding-box linear-gradient(pink, purple) 10% / cover #ADF repeat;
}
ui {
background: repeat border-box border-box linear-gradient(pink, purple) top left, url("test.png") 5px bottom content-box border-box repeat, 10% content-box content-box, 5px bottom / auto auto none alpha(pink, 0.5) content-box padding-box;
}
vi {
background: round no-repeat center, 5px bottom content-box none currentColor;
}
wi {
background: center, round no-repeat, round no-repeat center, none padding-box, 5px bottom / auto auto round no-repeat url("test.png"), none padding-box, repeat linear-gradient(pink, purple) padding-box, top left content-box linear-gradient(pink, purple), url("test.png") round no-repeat 10% / cover border-box, content-box linear-gradient(pink, purple) 5px bottom repeat, 10% / cover none padding-box border-box, border-box repeat 10% / 10%, 10% url("test.png") border-box, #ADF none center / cover padding-box round no-repeat;
}
xi {
background: content-box padding-box center / cover, border-box none repeat top left, none border-box repeat, none padding-box, url("test.png") border-box content-box, none 10%, center, top left padding-box padding-box, none center / cover border-box padding-box, padding-box linear-gradient(pink, purple) repeat;
}
yi {
background: none border-box, 5px bottom none, repeat padding-box top left, border-box #ADF 5px bottom round no-repeat linear-gradient(pink, purple);
}
zi {
background: border-box padding-box round no-repeat url("test.png") 5px bottom, round no-repeat url("test.png") padding-box, padding-box padding-box top left / auto auto none, top left content-box linear-gradient(pink, purple), url("test.png") content-box content-box repeat top left, repeat 10% red url("test.png");
}
aj {
background: 5px bottom / auto auto repeat padding-box url("test.png"), content-box round no-repeat none, none repeat content-box content-box top left / 10%, center none currentColor;
}
bj {
background: 10% content-box linear-gradient(pink, purple), linear-gradient(pink, purple) 5px bottom border-box border-box;
}
cj {
background: repeat 10% url("test.png"), repeat url("test.png") 10% border-box, round no-repeat none top left / 10%, top left, none red top left / cover;
}
dj {
background: 5px bottom / 10% content-box content-box round no-repeat url("test.png"), repeat linear-gradient(pink, purple) padding-box, url("test.png") padding-box 10%, linear-gradient(pink, purple) padding-box, padding-box repeat linear-gradient(pink, purple) 10% / auto auto, content-box none, 5px bottom linear-gradient(pink, purple) round no-repeat content-box padding-box, round no-repeat content-box 5px bottom none, linear-gradient(pink, purple) 5px bottom border-box padding-box repeat, 5px bottom, url("test.png") top left / auto auto, round no-repeat top left none, border-box url("test.png") repeat 5px bottom, repeat padding-box content-box linear-gradient(pink, purple), repeat padding-box center url("test.png"), repeat 10%, url("test.png") content-box center / auto auto, top left / auto auto content-box url("test.png") round no-repeat, center border-box url("test.png"), 10% padding-box url("test.png"), padding-box 10% round no-repeat none, 10% border-box, top left border-box repeat none, url("test.png") center / auto auto border-box, url("test.png"), url("test.png") 10%, 5px bottom / auto auto none, border-box padding-box none, repeat 5px bottom padding-box border-box, linear-gradient(pink, purple) repeat, round no-repeat center border-box border-box none, none border-box border-box round no-repeat, padding-box none 10% / 10% repeat, center / auto auto, center border-box round no-repeat, 10% border-box content-box none;
}
ej {
background: 5px bottom padding-box border-box, center border-box round no-repeat, 10% / cover none, center / 10% linear-gradient(pink, purple) round no-repeat content-box, round no-repeat, none center repeat, alpha(pink, 0.5) border-box 10% none;
}
fj {
background: content-box repeat none 10% / cover, padding-box repeat url("test.png") center / 10%, content-box padding-box, url("test.png") repeat 10% content-box, none content-box, top left url("test.png") content-box content-box, url("test.png") center / cover content-box round no-repeat, url("test.png") center repeat padding-box, center / 10% padding-box alpha(pink, 0.5) none repeat;
}
gj {
background: none currentColor;
}
hj {
background: none border-box 10%, padding-box content-box repeat center, content-box center none, content-box padding-box repeat top left url("test.png"), padding-box 5px bottom linear-gradient(pink, purple), round no-repeat 10% / cover;
}
ij {
background: top left repeat border-box padding-box none, repeat top left, 10% / cover none, red content-box border-box round no-repeat;
}
jj {
background: 10% / auto auto border-box content-box round no-repeat, center padding-box linear-gradient(pink, purple) round no-repeat, url("test.png") round no-repeat, url("test.png") content-box, top left content-box round no-repeat, top left url("test.png") repeat content-box content-box, repeat linear-gradient(pink, purple), repeat border-box top left, 5px bottom, center linear-gradient(pink, purple), content-box, linear-gradient(pink, purple) top left / cover alpha(pink, 0.5) round no-repeat;
}
kj {
background: 5px bottom none, center none content-box, repeat top left / 10%, repeat url("test.png"), repeat padding-box center, none round no-repeat border-box padding-box top left, url("test.png") padding-box, round no-repeat content-box padding-box top left, none repeat center / 10% content-box, round no-repeat top left padding-box, none repeat padding-box 5px bottom / auto auto;
}
lj {
background: content-box top left, round no-repeat padding-box, top left / cover round no-repeat, repeat 5px bottom / auto auto content-box border-box none, none top left content-box round no-repeat, 10% / auto auto none repeat border-box, none 5px bottom / auto auto padding-box, border-box repeat 5px bottom / 10% url("test.png"), url("test.png") content-box, none round no-repeat content-box, linear-gradient(pink, purple) 5px bottom border-box padding-box;
}
mj {
background: repeat linear-gradient(pink, purple) 5px bottom, border-box center / 10% linear-gradient(pink, purple), center / cover round no-repeat content-box, linear-gradient(pink, purple) content-box 10%, url("test.png") top left padding-box padding-box, top left repeat none, center border-box content-box none round no-repeat, url("test.png") top left / 10%, center / cover none content-box content-box, round no-repeat center / cover content-box, top left border-box linear-gradient(pink, purple) repeat, url("test.png"), linear-gradient(pink, purple), linear-gradient(pink, purple) 10% / cover content-box round no-repeat, 10% / auto auto border-box, top left / 10% linear-gradient(pink, purple) repeat @home;
}
nj {
background: linear-gradient(pink, purple) round no-repeat padding-box center, repeat 5px bottom / cover padding-box, padding-box, linear-gradient(pink, purple) 10% round no-repeat, repeat padding-box url("test.png"), content-box top left, 5px bottom / 10% linear-gradient(pink, purple) border-box, round no-repeat linear-gradient(pink, purple), padding-box none;
}
oj {
background: none 5px bottom / cover, center / 10% linear-gradient(pink, purple) repeat content-box, linear-gradient(pink, purple) center, padding-box top left / 10%, 5px bottom repeat url("test.png"), padding-box top left round no-repeat, center linear-gradient(pink, purple) padding-box content-box, @home round no-repeat top left;
}
pj {
background: center none padding-box border-box, repeat content-box content-box, 10% linear-gradient(pink, purple) border-box, 5px bottom / cover border-box none round no-repeat;
}
qj {
background: repeat padding-box, 10% content-box none repeat, none content-box top left / 10%, repeat padding-box none, 5px bottom content-box padding-box url("test.png");
}
rj {
background: padding-box 10% / auto auto alpha(pink, 0.5);
}
sj {
background: content-box top left / auto auto, padding-box 5px bottom round no-repeat, padding-box 10% / 10% round no-repeat, round no-repeat url("test.png"), url("test.png") 10% / auto auto padding-box content-box, linear-gradient(pink, purple) 10%;
}
tj {
background: center content-box border-box repeat, 10% content-box repeat, padding-box content-box 5px bottom url("test.png") round no-repeat, padding-box center round no-repeat none, none content-box 10% / auto auto, content-box repeat, border-box padding-box linear-gradient(pink, purple) round no-repeat 5px bottom;
}
uj {
background: linear-gradient(pink, purple) 10%, round no-repeat linear-gradient(pink, purple) content-box 10%, 10% / 10% padding-box, padding-box 5px bottom / 10%, content-box border-box none round no-repeat center / auto auto, top left url("test.png") padding-box;
}
vj {
background: linear-gradient(pink, purple) center round no-repeat;
}
wj {
background: repeat url("test.png") padding-box 5px bottom, center round no-repeat border-box linear-gradient(pink, purple), border-box repeat 5px bottom / 10%, border-box center / 10%, round no-repeat content-box 10% / auto auto, border-box center round no-repeat, round no-repeat, center / 10% border-box, border-box url("test.png") 10%, repeat 10% none border-box, url("test.png") 5px bottom repeat border-box content-box;
}
xj {
background: center padding-box url("test.png"), 10% / cover content-box border-box, repeat top left / 10%, center url("test.png"), border-box border-box linear-gradient(pink, purple), url("test.png") 5px bottom, 5px bottom / auto auto url("test.png"), top left none round no-repeat, round no-repeat center / cover border-box padding-box, 5px bottom / auto auto round no-repeat padding-box, url("test.png") content-box, url("test.png") 5px bottom round no-repeat, content-box 10% linear-gradient(pink, purple);
}
yj {
background: round no-repeat border-box 5px bottom / 10% red;
}
zj {
background: repeat border-box 10% url("test.png"), repeat linear-gradient(pink, purple) center padding-box border-box, none;
}
ak {
background: content-box 10% linear-gradient(pink, purple), padding-box linear-gradient(pink, purple) top left, padding-box 5px bottom / cover round no-repeat, border-box content-box repeat 10% alpha(pink, 0.5);
}
bk {
background: border-box currentColor;
}
ck {
background: linear-gradient(pink, purple) content-box top left / auto auto, 5px bottom / cover round no-repeat url("test.png") content-box, none round no-repeat center / auto auto border-box, 10% padding-box repeat url("test.png"), border-box repeat center / 10%, url("test.png") 5px bottom / auto auto content-box content-box, url("test.png") border-box round no-repeat, repeat content-box border-box url("test.png"), round no-repeat padding-box content-box, repeat url("test.png") 5px bottom, 10% repeat border-box, linear-gradient(pink, purple) round no-repeat, top left round no-repeat url("test.png"), padding-box top left / 10% none, center linear-gradient(pink, purple), round no-repeat padding-box, content-box linear-gradient(pink, purple) 5px bottom, content-box border-box 10% linear-gradient(pink, purple), alpha(pink, 0.5) padding-box none;
}
dk {
background: border-box content-box center currentColor none round no-repeat;
}
ek {
background: 10% / 10% padding-box, none 5px bottom, round no-repeat 5px bottom border-box, none, top left, center url("test.png") round no-repeat, none round no-repeat red content-box 5px bottom;
}
fk {
background: padding-box none, repeat content-box 5px bottom, url("test.png") center border-box padding-box round no-repeat, padding-box border-box 10% round no-repeat linear-gradient(pink, purple), border-box 5px bottom none, repeat 10% alpha(pink, 0.5);
}
gk {
background: url("test.png") 5px bottom padding-box, padding-box round no-repeat url("test.png") 10% / auto auto, none repeat, border-box content-box round no-repeat, round no-repeat url("test.png") alpha(pink, 0.5) border-box padding-box;
}
hk {
background: none currentColor content-box top left;
}
ik {
background: url("test.png") repeat content-box 10% / auto auto, top left / cover padding-box repeat linear-gradient(pink, purple), padding-box content-box, 10% url("test.png") round no-repeat, center / cover none content-box border-box, 10% border-box padding-box repeat, border-box repeat center / 10% url("test.png"), border-box content-box 5px bottom url("test.png") round no-repeat, linear-gradient(pink, purple) content-box round no-repeat, round no-repeat, url("test.png") 10% / cover repeat;
}
jk {
background: repeat content-box top left, repeat content-box center linear-gradient(pink, purple), center / auto auto repeat, round no-repeat linear-gradient(pink, purple), linear-gradient(pink, purple) content-box repeat center / auto auto, repeat, linear-gradient(pink, purple) border-box padding-box 10%, top left / auto auto padding-box round no-repeat, repeat padding-box border-box none, linear-gradient(pink, purple) round no-repeat border-box, repeat padding-box 10% url("test.png"), center round no-repeat content-box content-box, @home top left;
}
kk {
background: linear-gradient(pink, purple) top left / 10% padding-box round no-repeat, center content-box border-box, round no-repeat border-box linear-gradient(pink, purple), padding-box round no-repeat 10% / 10% linear-gradient(pink, purple), content-box repeat center linear-gradient(pink, purple), 10% none padding-box repeat, 10% padding-box, repeat top left border-box, border-box none 5px bottom;
}
lk {
background: content-box none 10% repeat, none round no-repeat content-box, padding-box content-box round no-repeat none 10% / 10%, border-box round no-repeat;
}
mk {
background: repeat padding-box center linear-gradient(pink, purple), border-box repeat, url("test.png") center / 10% repeat, border-box border-box top left none round no-repeat, content-box repeat top left / 10% linear-gradient(pink, purple), 5px bottom url("test.png"), round no-repeat padding-box 5px bottom / 10%, content-box repeat url("test.png"), content-box none round no-repeat 5px bottom / cover, top left / auto auto content-box border-box, repeat 5px bottom linear-gradient(pink, purple), round no-repeat url("test.png") border-box, none 10% round no-repeat border-box, round no-repeat linear-gradient(pink, purple) 5px bottom padding-box, linear-gradient(pink, purple) 10% / auto auto padding-box repeat @home;
}
nk {
background: border-box linear-gradient(pink, purple) 10% / 10% round no-repeat, url("test.png") content-box, repeat linear-gradient(pink, purple) padding-box, round no-repeat none top left / auto auto, round no-repeat border-box border-box, 5px bottom border-box, repeat, padding-box center round no-repeat url("test.png"), linear-gradient(pink, purple) padding-box round no-repeat, 10% round no-repeat, content-box 5px bottom repeat, top left content-box padding-box, padding-box padding-box repeat 5px bottom / auto auto, center round no-repeat linear-gradient(pink, purple) content-box border-box, padding-box round no-repeat, content-box repeat none, url("test.png") currentColor round no-repeat;
}
ok {
background: content-box 10% / cover url("test.png") repeat, content-box padding-box, center round no-repeat, round no-repeat 5px bottom / 10% border-box, repeat center, padding-box content-box linear-gradient(pink, purple) 5px bottom / 10% repeat, 5px bottom round no-repeat none, border-box repeat 5px bottom / auto auto none, border-box padding-box none 5px bottom / 10%;
}
pk {
background: center repeat padding-box url("test.png"), border-box top left / 10% url("test.png"), content-box, top left / cover border-box content-box, none padding-box 5px bottom, round no-repeat content-box padding-box, alpha(pink, 0.5) center round no-repeat linear-gradient(pink, purple);
}
qk {
background: padding-box border-box round no-repeat alpha(pink, 0.5) none;
}
rk {
background: linear-gradient(pink, purple) border-box round no-repeat center / cover, center content-box padding-box, border-box 10% / 10%, url("test.png") padding-box top left / cover, linear-gradient(pink, purple) top left round no-repeat, border-box content-box repeat url("test.png"), url("test.png") border-box border-box, center linear-gradient(pink, purple) round no-repeat border-box content-box, none top left padding-box, border-box round no-repeat url("test.png"), none 5px bottom, 5px bottom none, padding-box padding-box 10%, repeat center / cover padding-box border-box @home none;
}
sk {
background: repeat none content-box, border-box center, url("test.png") round no-repeat 10% / auto auto, linear-gradient(pink, purple) round no-repeat 10%, repeat center padding-box currentColor;
}
tk {
background: url("test.png") 5px bottom / 10% repeat, content-box round no-repeat none 10%, top left / 10% alpha(pink, 0.5) url("test.png");
}
uk {
background: 10% url("test.png") border-box, padding-box center round no-repeat none, repeat content-box padding-box center / cover, linear-gradient(pink, purple) border-box center round no-repeat, none, linear-gradient(pink, purple) repeat top left padding-box border-box, padding-box url("test.png"), border-box content-box linear-gradient(pink, purple), content-box top left / auto auto red;
}
vk {
background: repeat url("test.png") 5px bottom, none padding-box #ADF;
}
wk {
background: top left border-box content-box linear-gradient(pink, purple), content-box padding-box 10% / auto auto linear-gradient(pink, purple), url("test.png") repeat, center / 10% round no-repeat none, linear-gradient(pink, purple);
}
xk {
background: none repeat border-box, 5px bottom / cover padding-box none;
}
yk {
background: border-box content-box center url("test.png") round no-repeat;
}
zk {
background: 5px bottom / 10% padding-box border-box none, repeat border-box 5px bottom / auto auto, 10% / auto auto padding-box url("test.png"), repeat padding-box, round no-repeat alpha(pink, 0.5) content-box;
}
al {
background: round no-repeat center content-box, border-box 5px bottom / 10%, url("test.png") border-box 10% / cover, repeat @home content-box content-box url("test.png");
}
bl {
background: top left padding-box url("test.png") repeat, 10% url("test.png") round no-repeat, 5px bottom padding-box padding-box, round no-repeat border-box, round no-repeat none 5px bottom, url("test.png") 5px bottom padding-box round no-repeat, round no-repeat content-box padding-box linear-gradient(pink, purple) 5px bottom / auto auto, round no-repeat url("test.png") border-box, url("test.png") round no-repeat border-box 10%, 10% url("test.png"), round no-repeat border-box 10% linear-gradient(pink, purple), repeat padding-box border-box, linear-gradient(pink, purple) border-box center / cover, repeat center / cover border-box, 5px bottom repeat content-box content-box, none repeat 5px bottom content-box, linear-gradient(pink, purple) round no-repeat, 10% #ADF border-box padding-box none;
}
cl {
background: url("test.png") round no-repeat top left, top left linear-gradient(pink, purple) round no-repeat, round no-repeat url("test.png") 5px bottom border-box padding-box, border-box none repeat, repeat, border-box round no-repeat, center / cover border-box padding-box none;
}
dl {
background: padding-box repeat 10% url("test.png"), 10% repeat none, round no-repeat url("test.png");
}
el {
background: round no-repeat 5px bottom linear-gradient(pink, purple) padding-box;
}
fl {
background: 5px bottom repeat content-box none, repeat none #ADF;
}
gl {
background: 10% / cover repeat currentColor border-box padding-box;
}
hl {
background: 5px bottom url("test.png") round no-repeat, url("test.png") top left round no-repeat padding-box, border-box 10%, url("test.png") repeat center / auto auto padding-box padding-box;
}
il {
background: border-box none round no-repeat center / auto auto, round no-repeat none padding-box 5px bottom, round no-repeat content-box linear-gradient(pink, purple) center, alpha(pink, 0.5) none 10% / cover border-box repeat;
}
jl {
background: padding-box repeat 5px bottom / auto auto, linear-gradient(pink, purple) round no-repeat, center / cover padding-box;
}
kl {
background: top left / cover round no-repeat linear-gradient(pink, purple) border-box;
}
ll {
background: round no-repeat #ADF linear-gradient(pink, purple) border-box;
}
ml {
background: center url("test.png") content-box repeat;
}
nl {
background: padding-box content-box repeat top left none, none padding-box center repeat, border-box, none, content-box url("test.png") top left / auto auto, repeat url("test.png") top left / auto auto, repeat content-box none;
}
ol {
background: padding-box round no-repeat 5px bottom, none padding-box 10%, repeat border-box content-box url("test.png"), repeat none 10% / auto auto, round no-repeat linear-gradient(pink, purple), url("test.png") round no-repeat 5px bottom, round no-repeat padding-box top left / auto auto url("test.png"), none repeat, linear-gradient(pink, purple);
}
pl {
background: repeat content-box content-box url("test.png"), top left round no-repeat linear-gradient(pink, purple) padding-box, round no-repeat none border-box, border-box border-box 5px bottom url("test.png"), content-box 5px bottom round no-repeat, repeat content-box 5px bottom / auto auto, 5px bottom round no-repeat, url("test.png") 5px bottom repeat, none padding-box 5px bottom, 5px bottom / 10% padding-box, linear-gradient(pink, purple) 5px bottom / cover round no-repeat currentColor;
}
ql {
background: border-box content-box round no-repeat, repeat border-box border-box center, border-box content-box url("test.png") repeat, round no-repeat border-box, repeat border-box linear-gradient(pink, purple) top left / auto auto, linear-gradient(pink, purple) round no-repeat 10% / auto auto border-box content-box, 10% / cover repeat currentColor content-box content-box;
}
rl {
background: none top left padding-box, currentColor repeat content-box border-box 5px bottom;
}
sl {
background: round no-repeat linear-gradient(pink, purple) padding-box, repeat none center, url("test.png") round no-repeat content-box, border-box url("test.png") repeat, padding-box 10%, 5px bottom repeat, round no-repeat top left padding-box, currentColor content-box top left / cover url("test.png");
}
tl {
background: repeat border-box content-box, 10% url("test.png") padding-box round no-repeat, repeat 10% border-box, 5px bottom padding-box linear-gradient(pink, purple), center / cover content-box url("test.png") repeat;
}
ul {
background: url("test.png") repeat 5px bottom content-box, none top left round no-repeat, 10% border-box, center padding-box content-box, repeat padding-box, top left round no-repeat border-box, 10% linear-gradient(pink, purple) padding-box, repeat center linear-gradient(pink, purple), url("test.png") round no-repeat, content-box url("test.png") repeat center, 10% linear-gradient(pink, purple), 10% border-box, 10% round no-repeat linear-gradient(pink, purple), currentColor content-box top left none;
}
vl {
background: none, url("test.png") round no-repeat center, url("test.png") top left round no-repeat red padding-box;
}
wl {
background: round no-repeat 10% url("test.png") padding-box padding-box, none padding-box repeat, url("test.png") content-box 5px bottom / cover, 10% repeat, top left border-box round no-repeat, url("test.png") center content-box border-box, none center / 10% padding-box, padding-box content-box, 10% round no-repeat content-box, content-box round no-repeat, padding-box round no-repeat 10% / cover, linear-gradient(pink, purple) content-box, none content-box padding-box 5px bottom / 10% repeat, repeat top left / auto auto, none center padding-box padding-box repeat, content-box none, repeat linear-gradient(pink, purple) 5px bottom, red;
}
xl {
background: url("test.png") 5px bottom, padding-box padding-box repeat none center, round no-repeat border-box padding-box url("test.png"), linear-gradient(pink, purple) border-box 10% / cover, repeat padding-box alpha(pink, 0.5) linear-gradient(pink, purple) center;
}
yl {
background: 10% border-box content-box, repeat none content-box, padding-box url("test.png"), 5px bottom repeat, border-box round no-repeat url("test.png"), repeat content-box border-box 5px bottom / auto auto, none, border-box linear-gradient(pink, purple) @home repeat;
}
zl {
background: url("test.png") round no-repeat border-box content-box 10%, border-box round no-repeat top left, round no-repeat 10%, center repeat linear-gradient(pink, purple) padding-box, round no-repeat url("test.png") border-box, repeat content-box border-box, repeat padding-box 10%;
}
am {
background: padding-box 5px bottom / 10%, border-box repeat none center, 5px bottom content-box border-box, repeat border-box top left, url("test.png") 10% content-box round no-repeat, border-box center, padding-box center red round no-repeat;
}
bm {
background: repeat top left content-box, url("test.png") content-box padding-box, url("test.png") content-box center repeat, linear-gradient(pink, purple) 10% / cover padding-box content-box;
}
cm {
background: repeat padding-box border-box, top left linear-gradient(pink, purple) border-box padding-box, none center repeat, round no-repeat 10% content-box, top left / 10%, round no-repeat, center repeat content-box, top left repeat padding-box content-box, border-box padding-box 10% repeat, top left content-box repeat, 10% / cover, top left round no-repeat linear-gradient(pink, purple) border-box border-box, round no-repeat border-box content-box center, linear-gradient(pink, purple) round no-repeat 5px bottom padding-box border-box, none center / cover, border-box content-box linear-gradient(pink, purple) repeat, repeat center linear-gradient(pink, purple), content-box url("test.png") 10%, border-box 5px bottom / 10% url("test.png"), border-box url("test.png") 5px bottom, linear-gradient(pink, purple), currentColor 10% repeat border-box url("test.png");
}
dm {
background: center padding-box, top left / 10% border-box border-box url("test.png") round no-repeat, round no-repeat border-box, none repeat, repeat url("test.png"), linear-gradient(pink, purple) border-box padding-box, content-box repeat none 5px bottom, repeat border-box padding-box, linear-gradient(pink, purple) repeat content-box red;
}
em {
background: #ADF 5px bottom none repeat border-box content-box;
}
fm {
background: url("test.png") round no-repeat red top left;
}
gm {
background: border-box border-box top left, 10% / cover padding-box, content-box alpha(pink, 0.5);
}
hm {
background: border-box content-box center, round no-repeat content-box border-box none, repeat border-box linear-gradient(pink, purple) top left, none 5px bottom content-box padding-box;
}
im {
background: top left / auto auto border-box repeat none, url("test.png") top left / auto auto content-box, round no-repeat none currentColor center / cover;
}
jm {
background: url("test.png") border-box, round no-repeat center, alpha(pink, 0.5) center repeat;
}
km {
background: content-box round no-repeat center / auto auto;
}
lm {
background: round no-repeat content-box top left linear-gradient(pink, purple), 10% content-box, content-box content-box none repeat, padding-box top left repeat, none 10% / 10% border-box, 10% border-box url("test.png"), center padding-box, content-box round no-repeat;
}
mm {
background: none, round no-repeat content-box linear-gradient(pink, purple) 5px bottom / cover, 5px bottom / cover url("test.png") content-box repeat, top left / auto auto none, round no-repeat top left, padding-box padding-box repeat top left / 10%, top left round no-repeat padding-box border-box, center / cover round no-repeat, linear-gradient(pink, purple) top left content-box, 10% repeat, 10% padding-box border-box round no-repeat, padding-box 5px bottom, padding-box round no-repeat 5px bottom / auto auto none, content-box none round no-repeat, 10% round no-repeat padding-box padding-box, repeat padding-box, repeat linear-gradient(pink, purple) content-box content-box, center none padding-box, padding-box padding-box url("test.png") 5px bottom / 10%, top left url("test.png"), none padding-box repeat #ADF top left;
}
nm {
background: linear-gradient(pink, purple) center / auto auto, top left / 10% round no-repeat padding-box linear-gradient(pink, purple), content-box 10% / auto auto, border-box, repeat content-box, url("test.png") repeat content-box 10% / cover, url("test.png") center, 10%, content-box round no-repeat url("test.png"), round no-repeat top left none border-box border-box, 5px bottom round no-repeat border-box padding-box, url("test.png") 5px bottom content-box currentColor round no-repeat;
}
om {
background: top left @home border-box none;
}
pm {
background: content-box round no-repeat, url("test.png") top left / cover repeat, 10% / auto auto round no-repeat, center / 10% round no-repeat border-box content-box linear-gradient(pink, purple), border-box center none, 10% border-box round no-repeat, center / auto auto border-box padding-box round no-repeat url("test.png"), round no-repeat center / cover, center none repeat, linear-gradient(pink, purple) top left content-box repeat, border-box, 10% / cover round no-repeat, content-box content-box repeat top left / auto auto url("test.png"), repeat url("test.png") currentColor;
}
qm {
background: border-box border-box round no-repeat linear-gradient(pink, purple) 10%, 10% / 10% linear-gradient(pink, purple), url("test.png") round no-repeat top left / cover, center content-box border-box none, round no-repeat none top left / cover, top left / cover round no-repeat border-box linear-gradient(pink, purple), repeat border-box center / auto auto, padding-box repeat center @home;
}
rm {
background: content-box round no-repeat url("test.png") 5px bottom, border-box padding-box none top left / cover round no-repeat, none top left / auto auto content-box repeat, none repeat content-box content-box top left, top left border-box content-box round no-repeat url("test.png"), border-box round no-repeat 10%, content-box padding-box center url("test.png"), url("test.png") round no-repeat content-box, padding-box border-box, linear-gradient(pink, purple) center / cover border-box round no-repeat, 10% / auto auto none padding-box, none top left repeat, round no-repeat top left / 10%, repeat content-box, none alpha(pink, 0.5) round no-repeat;
}
sm {
background: linear-gradient(pink, purple) 10% / auto auto repeat border-box border-box, content-box, border-box center / 10%, round no-repeat center padding-box linear-gradient(pink, purple), repeat top left / 10% linear-gradient(pink, purple), 10% repeat linear-gradient(pink, purple) padding-box border-box, url("test.png") top left padding-box, repeat center / cover padding-box, border-box url("test.png") 10% / auto auto, red repeat padding-box linear-gradient(pink, purple) 10%;
}
tm {
background: round no-repeat center padding-box none, border-box, repeat url("test.png") 10% / cover, padding-box padding-box round no-repeat none center, 10% round no-repeat padding-box, url("test.png") border-box 5px bottom / 10% round no-repeat, content-box round no-repeat linear-gradient(pink, purple);
}
um {
background: 5px bottom url("test.png") padding-box round no-repeat, round no-repeat 5px bottom, top left round no-repeat border-box content-box url("test.png"), none round no-repeat center content-box, none repeat border-box content-box 10%, top left / auto auto content-box padding-box linear-gradient(pink, purple), round no-repeat, top left content-box round no-repeat currentColor;
}
vm {
background: 10% content-box, repeat none 10% content-box, border-box padding-box top left, center linear-gradient(pink, purple) content-box, repeat padding-box, round no-repeat alpha(pink, 0.5) top left padding-box padding-box;
}
wm {
background: url("test.png") 10% / auto auto padding-box round no-repeat, url("test.png") round no-repeat padding-box border-box, top left linear-gradient(pink, purple);
}
xm {
background: repeat 5px bottom / auto auto, padding-box url("test.png"), repeat border-box center / auto auto, linear-gradient(pink, purple) 5px bottom border-box, repeat border-box, round no-repeat #ADF url("test.png") top left padding-box;
}
ym {
background: round no-repeat 10% / 10% content-box border-box, border-box none, url("test.png") repeat top left, none content-box round no-repeat 5px bottom, top left linear-gradient(pink, purple) padding-box border-box, none repeat top left / cover padding-box, border-box content-box 10%, center / cover border-box repeat none, border-box center repeat, 10% border-box linear-gradient(pink, purple), round no-repeat none padding-box center, url("test.png") border-box top left, repeat 5px bottom linear-gradient(pink, purple) content-box, border-box border-box linear-gradient(pink, purple) 10%, center content-box none, padding-box content-box 5px bottom, 10% / cover linear-gradient(pink, purple) content-box repeat, top left padding-box, url("test.png") top left / auto auto padding-box repeat, center none repeat, 10% content-box url("test.png"), padding-box, padding-box none 5px bottom / auto auto round no-repeat, padding-box 5px bottom repeat linear-gradient(pink, purple), top left / cover padding-box repeat, round no-repeat none, padding-box repeat top left / 10%, url("test.png") center repeat, round no-repeat center content-box url("test.png"), center / auto auto url("test.png") content-box padding-box, center / 10% round no-repeat, center / cover round no-repeat border-box none, padding-box repeat, url("test.png") border-box content-box round no-repeat, none border-box content-box repeat, repeat border-box, round no-repeat padding-box padding-box 5px bottom, content-box border-box round no-repeat 5px bottom / auto auto linear-gradient(pink, purple), 10% padding-box none round no-repeat, padding-box border-box 10% repeat linear-gradient(pink, purple), center repeat, 10% / cover repeat, center round no-repeat linear-gradient(pink, purple), repeat border-box padding-box center / 10% url("test.png"), 5px bottom padding-box, top left round no-repeat padding-box content-box, linear-gradient(pink, purple) padding-box;
}
zm {
background: round no-repeat 10% linear-gradient(pink, purple), round no-repeat 10% / cover linear-gradient(pink, purple), repeat top left / 10% padding-box, border-box top left / 10% none, center repeat padding-box, repeat content-box linear-gradient(pink, purple), border-box center repeat, 10% / auto auto repeat alpha(pink, 0.5) content-box;
}
an {
background: round no-repeat top left linear-gradient(pink, purple) content-box, top left none repeat, round no-repeat content-box, repeat, 5px bottom padding-box padding-box repeat, linear-gradient(pink, purple) round no-repeat top left;
}
bn {
background: center;
}
cn {
background: padding-box round no-repeat url("test.png") center, 10% / 10% url("test.png") padding-box, url("test.png") repeat center content-box content-box, none repeat border-box border-box top left / 10%, content-box none, linear-gradient(pink, purple) 10% content-box content-box, center repeat border-box content-box url("test.png"), top left / auto auto repeat url("test.png") content-box, border-box content-box currentColor center / 10% none round no-repeat;
}
dn {
background: repeat linear-gradient(pink, purple) center / 10%, linear-gradient(pink, purple) border-box content-box repeat, padding-box content-box 10% none repeat, content-box padding-box center / cover linear-gradient(pink, purple), padding-box padding-box 10% repeat, none 10% / auto auto, content-box 10%, padding-box padding-box repeat, round no-repeat url("test.png"), round no-repeat padding-box top left, content-box content-box top left none round no-repeat, linear-gradient(pink, purple) padding-box, 5px bottom border-box content-box url("test.png"), padding-box;
}
en {
background: top left repeat red;
}
fn {
background: border-box none, none repeat padding-box, repeat padding-box linear-gradient(pink, purple), top left / cover #ADF content-box round no-repeat;
}
gn {
background: repeat content-box center / 10%, none center padding-box, padding-box linear-gradient(pink, purple) repeat center / auto auto, 10% / auto auto border-box border-box alpha(pink, 0.5);
}
hn {
background: repeat content-box content-box center url("test.png"), round no-repeat content-box none top left, currentColor linear-gradient(pink, purple) repeat 5px bottom padding-box padding-box;
}
in {
background: linear-gradient(pink, purple) round no-repeat top left red;
}
jn {
background: content-box center, url("test.png") round no-repeat #ADF 5px bottom padding-box;
}
kn {
background: linear-gradient(pink, purple) center / cover, content-box border-box center / 10% repeat, url("test.png") 10% / cover;
}
ln {
background: content-box center url("test.png"), content-box top left, content-box url("test.png") center, url("test.png") center / auto auto, padding-box round no-repeat 10% linear-gradient(pink, purple), border-box repeat 10%, repeat 10%, round no-repeat center, round no-repeat @home none content-box 10% / cover;
}
mn {
background: center / cover padding-box content-box repeat, none padding-box content-box center, url("test.png") border-box round no-repeat, content-box, center / auto auto red round no-repeat border-box;
}
nn {
background: content-box linear-gradient(pink, purple) round no-repeat, padding-box none top left, 5px bottom / 10% linear-gradient(pink, purple) round no-repeat, 10% round no-repeat padding-box border-box;
}
on {
background: content-box round no-repeat url("test.png"), content-box url("test.png") round no-repeat #ADF 10%;
}
pn {
background: content-box content-box 5px bottom / 10% linear-gradient(pink, purple) repeat, url("test.png") top left padding-box padding-box, padding-box center repeat, content-box linear-gradient(pink, purple) 5px bottom / auto auto @home;
}
qn {
background: none 10%, round no-repeat top left linear-gradient(pink, purple), center / auto auto url("test.png") repeat, border-box 10% / auto auto round no-repeat, round no-repeat content-box url("test.png"), none padding-box 10% / 10%, 10% border-box padding-box @home;
}
rn {
background: none padding-box round no-repeat top left, url("test.png") 10%;
}
sn {
background: center / 10% repeat url("test.png") padding-box, 10% / cover content-box repeat linear-gradient(pink, purple);
}
tn {
background: 10% linear-gradient(pink, purple), 5px bottom repeat padding-box border-box linear-gradient(pink, purple), center / 10% repeat, 5px bottom / cover, padding-box 5px bottom repeat none, content-box 5px bottom repeat, none border-box top left, content-box padding-box center, repeat padding-box content-box center none, top left round no-repeat border-box border-box, top left padding-box border-box, padding-box url("test.png") 5px bottom, round no-repeat url("test.png") padding-box #ADF;
}
un {
background: 5px bottom repeat none border-box;
}
vn {
background: none 5px bottom round no-repeat, round no-repeat content-box border-box none 10%, none center round no-repeat content-box, url("test.png") 5px bottom border-box, 10% / cover content-box padding-box, 5px bottom padding-box content-box, round no-repeat linear-gradient(pink, purple) border-box center, url("test.png"), round no-repeat border-box, round no-repeat linear-gradient(pink, purple) @home content-box;
}
wn {
background: none content-box padding-box center / 10% repeat, url("test.png") border-box center, none content-box border-box round no-repeat 5px bottom / 10%, border-box repeat none 5px bottom / auto auto, padding-box, url("test.png") padding-box repeat 10% / auto auto, top left / auto auto, repeat padding-box border-box center / cover, center round no-repeat padding-box border-box linear-gradient(pink, purple), content-box 10% / cover, round no-repeat 10% none, none content-box padding-box 10% repeat, round no-repeat border-box none, 5px bottom / auto auto content-box, center / auto auto padding-box linear-gradient(pink, purple), round no-repeat top left none border-box padding-box alpha(pink, 0.5);
}
xn {
background: padding-box repeat linear-gradient(pink, purple), border-box padding-box top left none @home;
}
yn {
background: linear-gradient(pink, purple) padding-box border-box repeat, content-box none 5px bottom round no-repeat, padding-box border-box linear-gradient(pink, purple) center, 10% / cover, padding-box center, none content-box content-box top left repeat, border-box content-box none top left, border-box, red border-box 5px bottom none;
}
zn {
background: none repeat, repeat border-box 10% / 10%, center padding-box round no-repeat, none round no-repeat;
}
ao {
background: round no-repeat linear-gradient(pink, purple) top left content-box border-box, url("test.png") padding-box center, top left red border-box none repeat;
}
bo {
background: linear-gradient(pink, purple) 10% round no-repeat, top left url("test.png") repeat padding-box, top left linear-gradient(pink, purple) border-box, center;
}
co {
background: border-box border-box top left / auto auto, linear-gradient(pink, purple) 10% round no-repeat content-box content-box, border-box linear-gradient(pink, purple) center, repeat top left linear-gradient(pink, purple), content-box url("test.png") repeat center, 5px bottom content-box repeat, padding-box url("test.png") 10% / auto auto round no-repeat, url("test.png") 10% / 10% border-box;
}
do {
background: padding-box round no-repeat, repeat content-box none;
}
eo {
background: round no-repeat top left / 10% linear-gradient(pink, purple), content-box content-box repeat, border-box border-box repeat none;
}
fo {
background: content-box 10%, border-box round no-repeat none, round no-repeat 5px bottom padding-box, linear-gradient(pink, purple), border-box top left, none top left round no-repeat, top left / auto auto border-box padding-box none, padding-box url("test.png") repeat, round no-repeat, 5px bottom url("test.png"), url("test.png") 5px bottom, round no-repeat url("test.png") border-box, none content-box;
}
go {
background: border-box top left / cover round no-repeat, repeat none border-box border-box @home;
}
ho {
background: border-box repeat 10% linear-gradient(pink, purple), padding-box, round no-repeat 10% url("test.png") content-box content-box, 5px bottom border-box content-box, round no-repeat none 5px bottom / auto auto padding-box, border-box round no-repeat, content-box border-box url("test.png") round no-repeat top left / auto auto, top left content-box content-box, padding-box content-box none 10% / auto auto round no-repeat, #ADF none center / 10% border-box;
}
io {
background: padding-box round no-repeat center / auto auto, round no-repeat content-box border-box none top left, 5px bottom / auto auto round no-repeat border-box content-box linear-gradient(pink, purple), url("test.png") padding-box round no-repeat 5px bottom;
}
jo {
background: content-box padding-box none round no-repeat center, 10% padding-box border-box, repeat center / 10% padding-box none, repeat center, padding-box round no-repeat top left linear-gradient(pink, purple), none round no-repeat padding-box content-box center / cover, padding-box url("test.png") round no-repeat, repeat linear-gradient(pink, purple) border-box content-box center, repeat content-box center / auto auto linear-gradient(pink, purple), top left / cover none padding-box, padding-box content-box linear-gradient(pink, purple) repeat, round no-repeat, top left linear-gradient(pink, purple), repeat center padding-box, content-box padding-box repeat linear-gradient(pink, purple) top left, center border-box border-box, repeat top left / cover @home;
}
ko {
background: content-box 5px bottom, padding-box round no-repeat none 10%, border-box center linear-gradient(pink, purple), top left linear-gradient(pink, purple) border-box content-box round no-repeat, repeat 5px bottom / auto auto padding-box, url("test.png"), content-box linear-gradient(pink, purple) round no-repeat, linear-gradient(pink, purple) border-box padding-box, top left repeat none padding-box padding-box, center linear-gradient(pink, purple), repeat linear-gradient(pink, purple) 5px bottom;
}
lo {
background: round no-repeat content-box url("test.png"), currentColor 5px bottom none border-box;
}
mo {
background: repeat linear-gradient(pink, purple), alpha(pink, 0.5) 10% repeat padding-box;
}
no {
background: linear-gradient(pink, purple) @home 10% repeat;
}
oo {
background: round no-repeat none border-box, border-box center repeat url("test.png");
}
po {
background: linear-gradient(pink, purple) 10% border-box, 5px bottom / auto auto url("test.png") content-box border-box, content-box padding-box 5px bottom / cover linear-gradient(pink, purple) repeat, linear-gradient(pink, purple) padding-box, round no-repeat padding-box border-box, url("test.png") 5px bottom padding-box, content-box content-box none top left repeat, round no-repeat content-box content-box none, repeat url("test.png") currentColor;
}
qo {
background: linear-gradient(pink, purple) 10% repeat, content-box round no-repeat top left, padding-box content-box 10% round no-repeat, repeat border-box linear-gradient(pink, purple) top left, round no-repeat none content-box content-box 10%, center padding-box border-box #ADF;
}
ro {
background: center / cover border-box, 5px bottom padding-box none repeat, top left border-box, linear-gradient(pink, purple) round no-repeat, round no-repeat top left border-box content-box linear-gradient(pink, purple), url("test.png") content-box currentColor center;
}
so {
background: padding-box round no-repeat, url("test.png") currentColor round no-repeat padding-box border-box;
}
to {
background: repeat none, top left repeat none padding-box border-box, 5px bottom @home;
}
uo {
background: linear-gradient(pink, purple) content-box, repeat 10% / 10%, padding-box 5px bottom / auto auto, border-box, 10% border-box padding-box, repeat center none border-box, top left content-box padding-box none, url("test.png") padding-box, repeat top left, @home padding-box border-box repeat 5px bottom;
}
vo {
background: border-box repeat, 5px bottom linear-gradient(pink, purple) repeat padding-box #ADF;
}
wo {
background: none 5px bottom padding-box content-box repeat, border-box linear-gradient(pink, purple) center, top left / 10% round no-repeat linear-gradient(pink, purple), round no-repeat none, round no-repeat padding-box, repeat content-box center, border-box url("test.png") 5px bottom round no-repeat, round no-repeat, linear-gradient(pink, purple) content-box border-box, border-box repeat, top left url("test.png") padding-box border-box, none content-box border-box 10%, border-box red repeat url("test.png");
}
xo {
background: repeat 10% border-box border-box, round no-repeat 5px bottom url("test.png"), content-box 5px bottom repeat, linear-gradient(pink, purple) top left repeat, center, round no-repeat 10% / 10% content-box border-box url("test.png"), border-box border-box round no-repeat 5px bottom;
}
yo {
background: padding-box round no-repeat top left / auto auto, 5px bottom repeat, round no-repeat padding-box none top left, border-box padding-box url("test.png") red repeat center;
}
zo {
background: repeat 10% linear-gradient(pink, purple), content-box repeat, none content-box border-box 5px bottom / cover;
}
ap {
background: round no-repeat content-box url("test.png"), 10% / auto auto round no-repeat linear-gradient(pink, purple) border-box, round no-repeat top left content-box border-box url("test.png"), border-box 10% / cover round no-repeat, round no-repeat padding-box 10% currentColor linear-gradient(pink, purple);
}
bp {
background: padding-box, url("test.png") repeat 5px bottom border-box, border-box center / cover, padding-box 5px bottom round no-repeat url("test.png"), currentColor padding-box round no-repeat;
}
cp {
background: 5px bottom / auto auto content-box repeat url("test.png"), 10% / 10% round no-repeat content-box, top left / auto auto none repeat, 10% / cover content-box, center / 10% repeat border-box, linear-gradient(pink, purple) border-box content-box 5px bottom, content-box linear-gradient(pink, purple), center none border-box;
}
dp {
background: 5px bottom round no-repeat url("test.png"), repeat linear-gradient(pink, purple) center, padding-box, 5px bottom red;
}
ep {
background: 5px bottom / 10% border-box content-box round no-repeat, center border-box, currentColor padding-box round no-repeat none center;
}
fp {
background: border-box url("test.png"), url("test.png") center / cover border-box, round no-repeat url("test.png") alpha(pink, 0.5);
}
gp {
background: url("test.png") repeat content-box, padding-box content-box 10% repeat, round no-repeat 5px bottom / 10%, padding-box 10%, 10% round no-repeat none border-box, 5px bottom content-box url("test.png") round no-repeat, padding-box repeat center, url("test.png") alpha(pink, 0.5);
}
hp {
background: round no-repeat currentColor 5px bottom content-box;
}
ip {
background: 10% / 10% linear-gradient(pink, purple) round no-repeat, border-box linear-gradient(pink, purple), 5px bottom none border-box, linear-gradient(pink, purple) padding-box padding-box, content-box border-box top left, repeat content-box none, content-box none top left / cover, 5px bottom / 10% repeat padding-box, 5px bottom round no-repeat content-box, url("test.png") repeat padding-box center, content-box linear-gradient(pink, purple), 5px bottom / cover, 5px bottom, repeat linear-gradient(pink, purple) center / cover, padding-box url("test.png") repeat;
}
jp {
background: linear-gradient(pink, purple) 10% repeat content-box padding-box, linear-gradient(pink, purple) border-box padding-box top left round no-repeat, round no-repeat border-box 5px bottom / auto auto none, round no-repeat 10%, repeat top left none, content-box border-box, none content-box round no-repeat, linear-gradient(pink, purple) round no-repeat border-box border-box, padding-box round no-repeat linear-gradient(pink, purple) 10% #ADF;
}
kp {
background: 5px bottom padding-box border-box, 10% border-box, padding-box padding-box, round no-repeat, center, repeat #ADF center linear-gradient(pink, purple);
}
lp {
background: repeat url("test.png") padding-box, linear-gradient(pink, purple) repeat 5px bottom / cover, linear-gradient(pink, purple) center repeat, padding-box 10% / cover, border-box padding-box url("test.png") top left round no-repeat, 5px bottom alpha(pink, 0.5);
}
mp {
background: round no-repeat none border-box content-box center, content-box 5px bottom / auto auto, round no-repeat 10% content-box none, round no-repeat top left none border-box padding-box, padding-box, border-box padding-box url("test.png") repeat, center repeat padding-box, 5px bottom / auto auto url("test.png") border-box, center, padding-box repeat;
}
np {
background: top left round no-repeat, padding-box 10%, 5px bottom content-box padding-box none, repeat padding-box 5px bottom none, top left url("test.png") repeat, content-box 10% / auto auto round no-repeat, center / auto auto border-box border-box, url("test.png") repeat 5px bottom border-box, linear-gradient(pink, purple) border-box 5px bottom / auto auto, round no-repeat, repeat 10%, content-box round no-repeat 5px bottom #ADF;
}
op {
background: content-box 5px bottom linear-gradient(pink, purple) round no-repeat, round no-repeat linear-gradient(pink, purple) border-box, padding-box linear-gradient(pink, purple), border-box padding-box alpha(pink, 0.5) center;
}
pp {
background: top left border-box, 5px bottom border-box padding-box, url("test.png"), content-box none center round no-repeat, #ADF padding-box border-box repeat 5px bottom;
}
qp {
background: top left / auto auto url("test.png"), padding-box padding-box 5px bottom / cover linear-gradient(pink, purple) round no-repeat, round no-repeat, center border-box padding-box none round no-repeat, url("test.png") center round no-repeat, 5px bottom / 10% linear-gradient(pink, purple) content-box, center repeat url("test.png"), repeat 5px bottom linear-gradient(pink, purple) content-box, padding-box border-box repeat 5px bottom, url("test.png") 10% round no-repeat, url("test.png") top left content-box content-box, 5px bottom / cover url("test.png"), repeat 5px bottom linear-gradient(pink, purple), round no-repeat linear-gradient(pink, purple) content-box content-box, padding-box none repeat, border-box 5px bottom linear-gradient(pink, purple) repeat, none repeat @home;
}
rp {
background: border-box border-box linear-gradient(pink, purple), border-box center, top left linear-gradient(pink, purple), content-box border-box round no-repeat, 10% round no-repeat, linear-gradient(pink, purple) top left round no-repeat padding-box, 5px bottom round no-repeat, repeat center padding-box, 5px bottom / 10% url("test.png") content-box, 5px bottom none repeat border-box;
}
sp {
background: round no-repeat url("test.png"), linear-gradient(pink, purple) 5px bottom / 10%;
}
tp {
background: #ADF top left repeat;
}
up {
background: none repeat 10%, center linear-gradient(pink, purple) border-box round no-repeat, repeat 10% border-box content-box linear-gradient(pink, purple), padding-box round no-repeat 5px bottom / 10%, url("test.png") repeat @home content-box;
}
vp {
background: none top left / 10% round no-repeat, repeat alpha(pink, 0.5) content-box 10%;
}
wp {
background: round no-repeat content-box linear-gradient(pink, purple);
}
xp {
background: #ADF padding-box repeat center / 10%;
}
yp {
background: repeat url("test.png") 5px bottom / cover border-box, @home padding-box border-box round no-repeat;
}
zp {
background: content-box 5px bottom / 10%, none round no-repeat content-box border-box, round no-repeat content-box linear-gradient(pink, purple), padding-box none, content-box url("test.png") center, content-box none repeat 10%, round no-repeat padding-box top left url("test.png"), url("test.png") 10% padding-box, content-box padding-box url("test.png") 10%, repeat top left padding-box;
}
aq {
background: padding-box repeat none 5px bottom / cover, center / auto auto repeat border-box;
}
bq {
background: url("test.png") top left / cover, round no-repeat content-box none 10% / 10%, border-box none center, url("test.png") center border-box content-box round no-repeat, center / cover linear-gradient(pink, purple) repeat content-box padding-box, repeat, 10%, linear-gradient(pink, purple) repeat 10% / 10% border-box;
}
cq {
background: none #ADF repeat content-box border-box 10% / 10%;
}
dq {
background: url("test.png") padding-box repeat;
}
eq {
background: currentColor 10% repeat content-box;
}
fq {
background: padding-box content-box none round no-repeat center / auto auto;
}
gq {
background: 5px bottom none padding-box repeat, content-box 5px bottom repeat, border-box top left linear-gradient(pink, purple), none padding-box, 10% / auto auto round no-repeat, 5px bottom content-box url("test.png"), center, center url("test.png") border-box, 5px bottom round no-repeat, center round no-repeat, top left border-box padding-box none round no-repeat;
}
hq {
background: repeat 5px bottom none padding-box, round no-repeat url("test.png"), border-box content-box none, linear-gradient(pink, purple) 5px bottom, linear-gradient(pink, purple) border-box top left round no-repeat, repeat, none border-box repeat, repeat linear-gradient(pink, purple) content-box border-box center, repeat 5px bottom, round no-repeat linear-gradient(pink, purple) content-box padding-box, content-box border-box 5px bottom / 10% round no-repeat url("test.png"), url("test.png") border-box, center repeat padding-box padding-box, repeat content-box 5px bottom / auto auto none, repeat @home linear-gradient(pink, purple);
}
iq {
background: none, 10% border-box, none repeat center / 10% padding-box;
}
jq {
background: border-box 10% / auto auto url("test.png") repeat, center / auto auto red url("test.png");
}
kq {
background: linear-gradient(pink, purple) repeat border-box, padding-box #ADF top left repeat none;
}
lq {
background: linear-gradient(pink, purple) 5px bottom / cover, top left padding-box border-box round no-repeat, repeat linear-gradient(pink, purple), 10%, currentColor 10% round no-repeat content-box border-box;
}
mq {
background: none border-box 5px bottom, content-box content-box, center none repeat border-box, content-box linear-gradient(pink, purple) 5px bottom, center / cover round no-repeat content-box, repeat, content-box padding-box, content-box padding-box, top left none, border-box round no-repeat url("test.png") top left;
}
nq {
background: alpha(pink, 0.5) top left / auto auto none;
}
oq {
background: padding-box content-box, top left round no-repeat, url("test.png") 10% repeat, center / cover repeat border-box, border-box repeat center / cover url("test.png"), url("test.png") content-box round no-repeat, url("test.png") border-box #ADF;
}
pq {
background: 10% border-box repeat linear-gradient(pink, purple), repeat padding-box 5px bottom / auto auto, linear-gradient(pink, purple) 5px bottom / 10% content-box padding-box repeat, top left / auto auto url("test.png") red round no-repeat;
}
qq {
background: 5px bottom / auto auto round no-repeat border-box none, url("test.png") center content-box round no-repeat, center padding-box padding-box, round no-repeat border-box top left / auto auto none, border-box top left repeat, repeat top left url("test.png") padding-box content-box, border-box round no-repeat center, repeat 10% / auto auto border-box, center content-box url("test.png"), round no-repeat 5px bottom content-box, 5px bottom repeat, content-box linear-gradient(pink, purple) center, none round no-repeat 10% #ADF;
}
rq {
background: round no-repeat top left / cover border-box border-box, round no-repeat linear-gradient(pink, purple), 5px bottom round no-repeat content-box padding-box linear-gradient(pink, purple), center currentColor linear-gradient(pink, purple) repeat;
}
sq {
background: repeat content-box none, none repeat 10%, round no-repeat none content-box 5px bottom, border-box padding-box none center repeat, linear-gradient(pink, purple) round no-repeat border-box 10% / auto auto, 10% linear-gradient(pink, purple) round no-repeat, border-box border-box top left round no-repeat url("test.png"), center linear-gradient(pink, purple) round no-repeat, padding-box 10% / cover, url("test.png") repeat, linear-gradient(pink, purple) border-box repeat, padding-box, content-box top left round no-repeat url("test.png"), center / 10% content-box round no-repeat, center / auto auto none, content-box content-box top left, none center padding-box;
}
tq {
background: url("test.png") repeat border-box 5px bottom, round no-repeat center none, round no-repeat border-box padding-box 5px bottom linear-gradient(pink, purple), red 10% border-box;
}
uq {
background: center padding-box, border-box center / cover, top left / auto auto padding-box repeat linear-gradient(pink, purple), content-box, linear-gradient(pink, purple) top left round no-repeat content-box content-box, none border-box 5px bottom repeat, 10% round no-repeat padding-box, 10% repeat linear-gradient(pink, purple), border-box padding-box linear-gradient(pink, purple) round no-repeat;
}
vq {
background: url("test.png") border-box padding-box center, round no-repeat content-box 10%, padding-box padding-box round no-repeat 10%;
}
wq {
background: 5px bottom none round no-repeat, round no-repeat center border-box none;
}
xq {
background: round no-repeat content-box linear-gradient(pink, purple), border-box top left / auto auto none round no-repeat, linear-gradient(pink, purple), 5px bottom padding-box round no-repeat, repeat linear-gradient(pink, purple) padding-box center, repeat none center, none top left / 10% repeat, 10% linear-gradient(pink, purple) border-box, padding-box url("test.png") top left round no-repeat, center round no-repeat padding-box content-box;
}
yq {
background: 5px bottom round no-repeat, top left / 10% round no-repeat, top left content-box, 5px bottom / auto auto currentColor padding-box content-box;
}
zq {
background: round no-repeat content-box 5px bottom, top left linear-gradient(pink, purple) padding-box padding-box, repeat 10% / 10% none border-box, repeat 10% content-box url("test.png"), 5px bottom none, padding-box url("test.png"), none 5px bottom / auto auto padding-box, content-box padding-box url("test.png") round no-repeat, 10% linear-gradient(pink, purple) repeat padding-box, 10% border-box, border-box 5px bottom round no-repeat url("test.png"), linear-gradient(pink, purple) repeat content-box padding-box, repeat url("test.png"), none content-box center round no-repeat, none content-box padding-box red;
}
ar {
background: alpha(pink, 0.5) border-box top left repeat;
}
br {
background: none 10% / 10% round no-repeat, 10% url("test.png") padding-box content-box round no-repeat, repeat top left / cover none border-box;
}
cr {
background: top left, padding-box round no-repeat url("test.png") 10%, 5px bottom content-box content-box repeat, 10% padding-box linear-gradient(pink, purple) repeat, padding-box top left / auto auto, 5px bottom round no-repeat linear-gradient(pink, purple) content-box padding-box, border-box round no-repeat, 5px bottom alpha(pink, 0.5) padding-box;
}
dr {
background: 10% padding-box border-box url("test.png"), @home 5px bottom content-box;
}
er {
background: url("test.png") round no-repeat center / cover, 10% / cover repeat border-box content-box, none padding-box top left;
}
fr {
background: content-box 10% / 10% linear-gradient(pink, purple) round no-repeat;
}
gr {
background: linear-gradient(pink, purple) round no-repeat 10% border-box padding-box, none padding-box top left, repeat none 5px bottom border-box, top left content-box padding-box linear-gradient(pink, purple) @home;
}
hr {
background: repeat center border-box none, none round no-repeat, padding-box content-box repeat none top left, content-box top left, repeat top left / cover url("test.png"), border-box border-box round no-repeat linear-gradient(pink, purple) 5px bottom, center none round no-repeat, border-box repeat 5px bottom / auto auto, content-box top left / cover repeat none, border-box 5px bottom / cover, 5px bottom / cover none, top left repeat border-box padding-box none, 5px bottom / auto auto content-box, border-box none repeat, round no-repeat 5px bottom content-box padding-box url("test.png"), 5px bottom / 10% none border-box content-box, center padding-box, padding-box content-box, padding-box round no-repeat, round no-repeat border-box border-box none top left, linear-gradient(pink, purple) round no-repeat border-box, padding-box content-box url("test.png"), 10% round no-repeat linear-gradient(pink, purple), top left round no-repeat border-box none, border-box, border-box url("test.png") repeat 10%, padding-box linear-gradient(pink, purple), repeat top left / 10%, alpha(pink, 0.5) content-box border-box url("test.png") top left;
}
ir {
background: padding-box, center / cover;
}
jr {
background: round no-repeat none center / 10%, padding-box url("test.png") 10%, linear-gradient(pink, purple) center content-box round no-repeat, center border-box repeat, content-box top left linear-gradient(pink, purple) repeat, round no-repeat url("test.png") 10% / cover border-box padding-box, round no-repeat border-box top left / cover;
}
kr {
background: repeat url("test.png") padding-box content-box, padding-box 10%, top left repeat border-box, round no-repeat none center padding-box, linear-gradient(pink, purple) 10% content-box border-box, repeat border-box content-box url("test.png"), 10%;
}
lr {
background: round no-repeat, content-box border-box repeat 5px bottom, repeat linear-gradient(pink, purple) 10% border-box, border-box 5px bottom repeat, padding-box top left repeat;
}
mr {
background: center currentColor;
}
nr {
background: repeat url("test.png") content-box top left, 5px bottom / auto auto round no-repeat padding-box padding-box, content-box 10% none, round no-repeat padding-box, url("test.png") round no-repeat padding-box, border-box url("test.png") currentColor repeat 10%;
}
or {
background: 5px bottom border-box padding-box none, padding-box padding-box url("test.png") repeat, content-box linear-gradient(pink, purple) repeat 10%, 10% / 10% round no-repeat linear-gradient(pink, purple), 10% currentColor round no-repeat;
}
pr {
background: padding-box content-box round no-repeat center / auto auto, border-box top left repeat, 10% linear-gradient(pink, purple) padding-box border-box, linear-gradient(pink, purple) round no-repeat border-box 5px bottom;
}
qr {
background: content-box 5px bottom, center / 10% padding-box border-box url("test.png"), linear-gradient(pink, purple) center content-box, 5px bottom / cover none repeat, content-box 10% repeat;
}
rr {
background: top left repeat linear-gradient(pink, purple) border-box, round no-repeat content-box, url("test.png") repeat, 10% none, border-box round no-repeat, round no-repeat linear-gradient(pink, purple) 5px bottom / 10% padding-box, url("test.png") 10% round no-repeat, none #ADF padding-box border-box round no-repeat;
}
sr {
background: linear-gradient(pink, purple) 5px bottom round no-repeat, repeat top left, padding-box padding-box none center, round no-repeat, content-box border-box none, repeat padding-box content-box top left / cover url("test.png"), center content-box url("test.png"), 5px bottom content-box border-box none, round no-repeat center, padding-box content-box repeat;
}
tr {
background: repeat linear-gradient(pink, purple) top left, content-box padding-box repeat 10%, top left linear-gradient(pink, purple) content-box content-box round no-repeat, round no-repeat content-box top left url("test.png"), border-box content-box url("test.png") top left / cover repeat, 5px bottom border-box repeat linear-gradient(pink, purple), border-box content-box repeat top left / 10%, round no-repeat 10% / 10% border-box none, repeat padding-box top left, url("test.png") 5px bottom content-box border-box, padding-box linear-gradient(pink, purple) 5px bottom;
}
ur {
background: round no-repeat, url("test.png") 5px bottom round no-repeat, border-box border-box top left / 10% @home round no-repeat;
}
vr {
background: repeat url("test.png") padding-box center, none round no-repeat padding-box, top left none padding-box, center / cover padding-box none;
}
wr {
background: 5px bottom padding-box none, content-box border-box 10% linear-gradient(pink, purple) repeat @home;
}
xr {
background: none 5px bottom content-box round no-repeat, repeat top left / 10% none, none 10% round no-repeat, 5px bottom round no-repeat url("test.png") padding-box, repeat center, 10% round no-repeat content-box border-box, center / auto auto content-box, content-box content-box round no-repeat, url("test.png") content-box content-box #ADF top left / auto auto;
}
yr {
background: round no-repeat, repeat url("test.png") 5px bottom, top left repeat padding-box, 10% / cover repeat none #ADF;
}
zr {
background: linear-gradient(pink, purple) repeat border-box, padding-box #ADF;
}
as {
background: repeat top left url("test.png"), url("test.png") center, url("test.png") repeat #ADF center;
}
bs {
background: linear-gradient(pink, purple) border-box content-box 10% round no-repeat, linear-gradient(pink, purple) repeat padding-box, top left none content-box border-box, padding-box url("test.png") 5px bottom / 10%, 5px bottom linear-gradient(pink, purple) red;
}
cs {
background: repeat none, content-box top left url("test.png"), top left border-box, top left linear-gradient(pink, purple) currentColor;
}
ds {
background: padding-box content-box url("test.png") alpha(pink, 0.5) 10%;
}
es {
background: border-box repeat url("test.png"), 10% / cover linear-gradient(pink, purple) repeat, repeat padding-box padding-box, none 5px bottom / auto auto border-box, padding-box padding-box top left, 10% / cover, border-box repeat linear-gradient(pink, purple) 10%, top left linear-gradient(pink, purple), round no-repeat linear-gradient(pink, purple) 10%, url("test.png") round no-repeat top left padding-box, repeat content-box 10%, padding-box center / 10% url("test.png");
}
fs {
background: repeat url("test.png") content-box 10%, repeat linear-gradient(pink, purple) 5px bottom / auto auto content-box, round no-repeat 5px bottom / auto auto, padding-box linear-gradient(pink, purple) center / auto auto repeat, url("test.png") repeat 10%, top left / cover padding-box repeat, content-box border-box linear-gradient(pink, purple) center / auto auto repeat, linear-gradient(pink, purple) content-box padding-box round no-repeat, padding-box padding-box 5px bottom linear-gradient(pink, purple), url("test.png") @home 10% border-box;
}
gs {
background: linear-gradient(pink, purple) border-box round no-repeat, round no-repeat content-box content-box 5px bottom / auto auto, 10% / auto auto, padding-box linear-gradient(pink, purple) round no-repeat top left / auto auto, repeat center, top left padding-box linear-gradient(pink, purple), @home round no-repeat border-box url("test.png") 5px bottom;
}
hs {
background: 10% url("test.png") repeat border-box content-box, border-box repeat, none content-box content-box 10% / auto auto, 10% / 10% round no-repeat linear-gradient(pink, purple), 5px bottom none content-box, none border-box 5px bottom, repeat top left / auto auto border-box content-box none, border-box center / 10% linear-gradient(pink, purple), round no-repeat @home 5px bottom / auto auto none;
}
is {
background: padding-box padding-box none 5px bottom repeat;
}
js {
background: none border-box padding-box alpha(pink, 0.5);
}
ks {
background: round no-repeat #ADF border-box content-box 10% / auto auto;
}
ls {
background: round no-repeat, 10% / auto auto padding-box, round no-repeat top left / cover linear-gradient(pink, purple) padding-box, currentColor;
}
ms {
background: border-box repeat, center content-box url("test.png"), 10% / 10% repeat none border-box content-box, border-box border-box round no-repeat @home;
}
ns {
background: top left / cover url("test.png") padding-box, round no-repeat 5px bottom / auto auto linear-gradient(pink, purple), padding-box padding-box 10% / 10% linear-gradient(pink, purple) repeat, padding-box content-box url("test.png") repeat, linear-gradient(pink, purple) border-box padding-box 5px bottom / cover repeat, content-box top left / 10% url("test.png"), repeat top left @home;
}
os {
background: center none content-box round no-repeat, padding-box linear-gradient(pink, purple) top left / 10%, 5px bottom / cover padding-box, content-box border-box top left, padding-box 5px bottom / cover none, repeat border-box border-box linear-gradient(pink, purple), 10% border-box padding-box round no-repeat, round no-repeat url("test.png") 10% / cover padding-box, none center repeat, content-box linear-gradient(pink, purple) repeat center, repeat 5px bottom;
}
ps {
background: padding-box padding-box linear-gradient(pink, purple), url("test.png") border-box content-box center / 10% repeat, padding-box content-box round no-repeat top left / auto auto, round no-repeat content-box linear-gradient(pink, purple) center, linear-gradient(pink, purple), linear-gradient(pink, purple) border-box round no-repeat, repeat padding-box top left, center repeat linear-gradient(pink, purple), top left linear-gradient(pink, purple) padding-box border-box, none 5px bottom round no-repeat, repeat 10% / cover content-box;
}
qs {
background: content-box 10% repeat, border-box url("test.png") 10%, content-box linear-gradient(pink, purple) 10% / cover, none 10% / cover content-box, top left content-box round no-repeat, linear-gradient(pink, purple) @home padding-box border-box center repeat;
}
rs {
background: center round no-repeat none content-box, center / auto auto round no-repeat padding-box, repeat linear-gradient(pink, purple), border-box content-box repeat url("test.png"), round no-repeat url("test.png") content-box content-box 5px bottom, 5px bottom linear-gradient(pink, purple), url("test.png") padding-box repeat, center / auto auto url("test.png"), border-box 5px bottom / auto auto repeat url("test.png"), round no-repeat padding-box top left / cover linear-gradient(pink, purple), padding-box round no-repeat @home top left;
}
ss {
background: url("test.png") top left / 10%, center padding-box linear-gradient(pink, purple) round no-repeat, 10% none, top left / auto auto repeat padding-box, content-box 5px bottom linear-gradient(pink, purple) round no-repeat, none content-box round no-repeat top left / cover, top left / 10% none border-box, content-box, linear-gradient(pink, purple) padding-box repeat, border-box, linear-gradient(pink, purple) content-box top left, top left linear-gradient(pink, purple);
}
ts {
background: top left, top left round no-repeat padding-box content-box, padding-box center / cover url("test.png") repeat, linear-gradient(pink, purple) padding-box border-box center, 5px bottom / 10% repeat content-box content-box, repeat center / cover, padding-box padding-box top left / auto auto url("test.png"), padding-box linear-gradient(pink, purple) center / 10%, linear-gradient(pink, purple) 10% repeat padding-box content-box, round no-repeat linear-gradient(pink, purple) #ADF;
}
us {
background: currentColor none 10% repeat padding-box padding-box;
}
vs {
background: @home border-box linear-gradient(pink, purple);
}
ws {
background: round no-repeat url("test.png") border-box, center repeat border-box linear-gradient(pink, purple), linear-gradient(pink, purple);
}
xs {
background: 10% / cover repeat, 5px bottom padding-box, round no-repeat linear-gradient(pink, purple) padding-box padding-box, none, center content-box border-box repeat;
}
ys {
background: center round no-repeat, 10% border-box repeat, top left / auto auto, padding-box 5px bottom linear-gradient(pink, purple), round no-repeat none 5px bottom content-box, round no-repeat content-box content-box 5px bottom none, round no-repeat 5px bottom, none padding-box 5px bottom, none round no-repeat padding-box, 5px bottom linear-gradient(pink, purple) content-box, border-box round no-repeat @home;
}
zs {
background: padding-box none top left / auto auto, linear-gradient(pink, purple) border-box border-box, padding-box round no-repeat top left none, none padding-box repeat 10%, top left / cover round no-repeat url("test.png") padding-box border-box red;
}
at {
background: round no-repeat linear-gradient(pink, purple) center border-box, none top left / cover, center none, linear-gradient(pink, purple) repeat center, alpha(pink, 0.5) border-box;
}
bt {
background: round no-repeat center border-box border-box, content-box padding-box top left / auto auto round no-repeat, repeat linear-gradient(pink, purple) content-box 10%, round no-repeat 5px bottom / cover border-box, #ADF border-box top left round no-repeat;
}
ct {
background: repeat border-box none, center / cover border-box border-box #ADF;
}
dt {
background: 5px bottom content-box;
}
et {
background: top left / cover none, border-box round no-repeat, repeat padding-box, padding-box center url("test.png") repeat, round no-repeat 10% / 10%, padding-box round no-repeat none, content-box @home round no-repeat;
}
ft {
background: top left border-box, linear-gradient(pink, purple) content-box border-box top left / cover repeat;
}
gt {
background: padding-box repeat red;
}
ht {
background: none, repeat 10% border-box url("test.png") #ADF;
}
it {
background: padding-box content-box center round no-repeat, content-box 5px bottom / 10% url("test.png") round no-repeat, url("test.png") repeat top left / 10%, round no-repeat 5px bottom, padding-box top left, 5px bottom / cover content-box, padding-box top left / auto auto linear-gradient(pink, purple), border-box top left repeat none, border-box content-box top left linear-gradient(pink, purple), top left, center none repeat, top left / 10% repeat, content-box 5px bottom none, linear-gradient(pink, purple) 5px bottom / cover, repeat 10% / cover padding-box url("test.png"), linear-gradient(pink, purple) border-box round no-repeat, repeat top left, repeat none currentColor;
}
jt {
background: 10%, linear-gradient(pink, purple), top left linear-gradient(pink, purple), none padding-box padding-box top left round no-repeat, none round no-repeat 10% / 10%, round no-repeat content-box content-box 5px bottom, round no-repeat 10% url("test.png"), top left none, url("test.png") round no-repeat alpha(pink, 0.5) padding-box;
}
kt {
background: repeat padding-box linear-gradient(pink, purple), 5px bottom / 10% border-box border-box round no-repeat, content-box content-box round no-repeat center, center linear-gradient(pink, purple) content-box round no-repeat, padding-box padding-box none round no-repeat, url("test.png") 10%, none repeat, top left / cover url("test.png"), round no-repeat 10% content-box, center / cover content-box content-box url("test.png") repeat, border-box center, content-box top left;
}
lt {
background: linear-gradient(pink, purple) center round no-repeat, content-box repeat none, repeat border-box linear-gradient(pink, purple), top left / 10%, top left border-box url("test.png"), content-box round no-repeat red;
}
mt {
background: center / cover round no-repeat url("test.png"), 5px bottom round no-repeat content-box border-box, border-box padding-box round no-repeat 10% url("test.png"), none, 10% repeat content-box, top left repeat, none 10% / auto auto, url("test.png") repeat, 5px bottom padding-box repeat url("test.png"), center content-box padding-box repeat, none;
}
nt {
background: content-box url("test.png") repeat, repeat 5px bottom / auto auto url("test.png") border-box, top left, border-box border-box linear-gradient(pink, purple) round no-repeat, top left round no-repeat padding-box content-box, repeat content-box content-box none top left / auto auto, repeat alpha(pink, 0.5) top left / auto auto;
}
ot {
background: linear-gradient(pink, purple) center padding-box, top left round no-repeat, 10% / 10% round no-repeat, padding-box repeat url("test.png"), #ADF center / auto auto repeat none content-box border-box;
}
pt {
background: repeat 5px bottom / 10% border-box url("test.png"), content-box repeat linear-gradient(pink, purple) center, red round no-repeat border-box padding-box center / cover url("test.png");
}
qt {
background: none content-box, red padding-box;
}
rt {
background: repeat content-box border-box top left, content-box center, border-box border-box;
}
st {
background: repeat url("test.png") padding-box content-box center, 10% none round no-repeat padding-box padding-box, none repeat 5px bottom border-box, linear-gradient(pink, purple) round no-repeat content-box content-box top left, 10% content-box url("test.png"), padding-box round no-repeat url("test.png"), linear-gradient(pink, purple) repeat, content-box none top left round no-repeat, padding-box url("test.png") top left / cover, round no-repeat top left / auto auto border-box, none round no-repeat top left padding-box, url("test.png") border-box repeat 5px bottom / 10%, round no-repeat alpha(pink, 0.5) none;
}
tt {
background: 5px bottom round no-repeat url("test.png"), 5px bottom repeat, none repeat, center none content-box, repeat url("test.png"), linear-gradient(pink, purple), border-box repeat none center, none content-box content-box top left round no-repeat, linear-gradient(pink, purple) border-box padding-box red 5px bottom;
}
ut {
background: repeat top left border-box padding-box url("test.png"), border-box, repeat 5px bottom border-box linear-gradient(pink, purple), content-box padding-box round no-repeat, content-box linear-gradient(pink, purple) repeat top left, repeat url("test.png") 10% padding-box red;
}
vt {
background: content-box linear-gradient(pink, purple) 5px bottom round no-repeat, padding-box padding-box url("test.png") top left / cover;
}
wt {
background: 5px bottom, none 5px bottom / 10% padding-box content-box round no-repeat, none top left / cover round no-repeat, border-box border-box 5px bottom / 10% url("test.png"), round no-repeat, 10% / 10% none padding-box, content-box none 10% / auto auto repeat, padding-box repeat top left, padding-box;
}
xt {
background: 10% url("test.png") border-box border-box, linear-gradient(pink, purple) border-box padding-box repeat 5px bottom, none 10%, url("test.png") content-box round no-repeat;
}
yt {
background: padding-box center / 10% linear-gradient(pink, purple), url("test.png") top left, 10% url("test.png") repeat, round no-repeat, content-box linear-gradient(pink, purple) center repeat, content-box 10% round no-repeat, none round no-repeat center content-box, center / cover padding-box repeat, border-box padding-box url("test.png") round no-repeat, top left border-box content-box round no-repeat, 10% content-box border-box none, none 5px bottom, border-box border-box none 5px bottom repeat, url("test.png") 5px bottom / cover round no-repeat padding-box, center border-box border-box url("test.png"), border-box 10% url("test.png"), none border-box, linear-gradient(pink, purple), padding-box padding-box repeat url("test.png"), linear-gradient(pink, purple) 10% repeat, 5px bottom url("test.png") round no-repeat, center / cover url("test.png") repeat, content-box #ADF linear-gradient(pink, purple) center round no-repeat;
}
zt {
background: content-box padding-box 10% / 10%, padding-box repeat, border-box repeat center none, content-box padding-box linear-gradient(pink, purple) round no-repeat, top left round no-repeat, round no-repeat url("test.png"), url("test.png") center repeat, repeat center padding-box content-box, linear-gradient(pink, purple) round no-repeat padding-box padding-box center, url("test.png") content-box center / 10% round no-repeat, url("test.png") 10% repeat border-box, border-box none repeat 10%, padding-box content-box linear-gradient(pink, purple) center, content-box repeat top left, url("test.png") repeat currentColor;
}
au {
background: padding-box none alpha(pink, 0.5) top left;
}
bu {
background: padding-box center, repeat, top left repeat content-box border-box none, url("test.png") border-box content-box repeat 10% / auto auto, currentColor linear-gradient(pink, purple) 5px bottom;
}
cu {
background: round no-repeat top left / auto auto, round no-repeat 10% / 10% padding-box content-box none, center content-box border-box repeat, none border-box 5px bottom, linear-gradient(pink, purple) round no-repeat 10%;
}
du {
background: repeat url("test.png"), 10% none round no-repeat content-box, center none repeat padding-box, top left linear-gradient(pink, purple) round no-repeat, top left padding-box padding-box, 5px bottom repeat none border-box, top left round no-repeat padding-box content-box linear-gradient(pink, purple), 10% repeat none padding-box, linear-gradient(pink, purple) repeat top left / cover;
}
eu {
background: padding-box none, content-box linear-gradient(pink, purple) round no-repeat center;
}
fu {
background: alpha(pink, 0.5) url("test.png") padding-box 5px bottom / auto auto;
}
gu {
background: round no-repeat none content-box 5px bottom / cover, round no-repeat none, repeat, border-box 10%, repeat padding-box url("test.png") center / auto auto, 5px bottom / cover round no-repeat, linear-gradient(pink, purple) repeat content-box, center / 10% linear-gradient(pink, purple) border-box content-box, top left round no-repeat url("test.png"), content-box content-box 5px bottom, linear-gradient(pink, purple) border-box round no-repeat top left, top left content-box none, border-box none 5px bottom, content-box center / 10% currentColor linear-gradient(pink, purple);
}
hu {
background: 10% url("test.png"), repeat center / 10% border-box padding-box linear-gradient(pink, purple), padding-box border-box repeat none center, 10% border-box repeat none, content-box 5px bottom none, none center round no-repeat, top left content-box linear-gradient(pink, purple), content-box content-box repeat, content-box padding-box top left / 10% round no-repeat, 5px bottom repeat, 10% / auto auto linear-gradient(pink, purple) repeat, 5px bottom padding-box padding-box round no-repeat, 10% / 10% content-box round no-repeat none @home;
}
iu {
background: 5px bottom repeat content-box, padding-box border-box linear-gradient(pink, purple) 5px bottom / cover repeat;
}
ju {
background: content-box red 10%;
}
ku {
background: url("test.png") red round no-repeat 10%;
}
lu {
background: linear-gradient(pink, purple) repeat padding-box padding-box 5px bottom;
}
mu {
background: round no-repeat top left / 10% content-box, round no-repeat 10% padding-box content-box linear-gradient(pink, purple), repeat padding-box top left / 10%, round no-repeat content-box linear-gradient(pink, purple) 10%, center / 10% border-box none round no-repeat, round no-repeat padding-box top left linear-gradient(pink, purple), repeat url("test.png") center padding-box padding-box, round no-repeat center / auto auto content-box none, content-box border-box, top left padding-box content-box url("test.png"), linear-gradient(pink, purple) border-box content-box;
}
nu {
background: none round no-repeat 10% / cover content-box padding-box, center url("test.png") content-box content-box, padding-box 5px bottom / cover round no-repeat none, border-box content-box linear-gradient(pink, purple) currentColor round no-repeat;
}
ou {
background: url("test.png") center padding-box, linear-gradient(pink, purple) center padding-box, 10% repeat padding-box url("test.png"), url("test.png") repeat border-box, padding-box repeat 5px bottom, 5px bottom repeat content-box, repeat center / cover, padding-box top left / cover, round no-repeat linear-gradient(pink, purple), border-box repeat @home 5px bottom;
}
pu {
background: repeat red url("test.png") padding-box center;
}
qu {
background: url("test.png"), 5px bottom / 10% repeat padding-box border-box, none padding-box round no-repeat center, 5px bottom round no-repeat, padding-box, repeat none border-box center, 10% / 10% url("test.png") border-box, 5px bottom linear-gradient(pink, purple) round no-repeat alpha(pink, 0.5);
}
ru {
background: repeat linear-gradient(pink, purple) 5px bottom / auto auto content-box, content-box content-box 5px bottom / auto auto linear-gradient(pink, purple), 5px bottom round no-repeat, repeat center / 10% content-box linear-gradient(pink, purple), url("test.png") top left, border-box round no-repeat linear-gradient(pink, purple) top left / 10%, 10% linear-gradient(pink, purple), border-box linear-gradient(pink, purple) 10% #ADF round no-repeat;
}
su {
background: 10% linear-gradient(pink, purple) repeat, round no-repeat linear-gradient(pink, purple) top left / auto auto border-box, repeat content-box content-box 10% / auto auto none, url("test.png") repeat 5px bottom / 10%, round no-repeat 5px bottom, round no-repeat padding-box none, 10% padding-box round no-repeat url("test.png"), round no-repeat 5px bottom / cover linear-gradient(pink, purple);
}
tu {
background: content-box border-box url("test.png") center / cover round no-repeat, linear-gradient(pink, purple) 10% / cover border-box, repeat url("test.png") 10%, border-box padding-box none center round no-repeat, repeat linear-gradient(pink, purple) 5px bottom padding-box;
}
uu {
background: center padding-box border-box, linear-gradient(pink, purple) padding-box 5px bottom / cover, 5px bottom / cover, linear-gradient(pink, purple) content-box border-box, repeat alpha(pink, 0.5) url("test.png") 10%;
}
vu {
background: border-box round no-repeat center, repeat content-box border-box, 5px bottom round no-repeat, none center / cover content-box border-box;
}
wu {
background: repeat border-box, content-box repeat, url("test.png") center content-box content-box repeat, url("test.png") top left repeat, repeat linear-gradient(pink, purple) content-box, 10% / 10% border-box border-box round no-repeat url("test.png"), border-box padding-box linear-gradient(pink, purple) 5px bottom, padding-box padding-box url("test.png") repeat 5px bottom / 10% currentColor;
}
xu {
background: border-box border-box round no-repeat, linear-gradient(pink, purple) padding-box center / 10%, repeat content-box linear-gradient(pink, purple) 10%, url("test.png") content-box content-box @home round no-repeat;
}
yu {
background: border-box 10% / cover url("test.png") round no-repeat, top left / auto auto none repeat content-box, center padding-box content-box url("test.png"), 10% content-box, none round no-repeat padding-box padding-box 5px bottom, 5px bottom repeat padding-box none, repeat 10% none, none content-box content-box currentColor repeat;
}
zu {
background: 5px bottom currentColor padding-box content-box round no-repeat;
}
av {
background: #ADF 5px bottom / cover round no-repeat;
}
bv {
background: round no-repeat content-box 10%, repeat url("test.png") padding-box padding-box top left, repeat linear-gradient(pink, purple) border-box border-box, padding-box 10%, linear-gradient(pink, purple) 5px bottom round no-repeat, none border-box 10% / cover, linear-gradient(pink, purple);
}
cv {
background: padding-box none top left round no-repeat, round no-repeat url("test.png") padding-box, none 10% border-box, top left, none center / 10%, #ADF center url("test.png");
}
dv {
background: none repeat content-box top left, border-box 5px bottom linear-gradient(pink, purple), border-box padding-box none 5px bottom, 10% url("test.png") border-box, repeat padding-box 5px bottom, url("test.png") center round no-repeat content-box, content-box linear-gradient(pink, purple) round no-repeat, padding-box repeat url("test.png"), 10% / auto auto padding-box round no-repeat none, padding-box none 5px bottom, repeat none center, padding-box top left round no-repeat, 10% / auto auto alpha(pink, 0.5) repeat border-box;
}
ev {
background: content-box center / cover round no-repeat red;
}
fv {
background: top left repeat, content-box repeat, padding-box content-box #ADF 5px bottom linear-gradient(pink, purple) repeat;
}
gv {
background: linear-gradient(pink, purple) center / cover padding-box border-box;
}
hv {
background: center, currentColor content-box url("test.png");
}
iv {
background: border-box none repeat, center padding-box content-box none, linear-gradient(pink, purple) round no-repeat alpha(pink, 0.5) padding-box padding-box;
}
jv {
background: repeat padding-box border-box, repeat center content-box none, border-box content-box linear-gradient(pink, purple) center, top left / 10% round no-repeat content-box content-box, content-box border-box center, 10% border-box url("test.png"), 10% padding-box, none padding-box round no-repeat 5px bottom / cover, round no-repeat 5px bottom none, linear-gradient(pink, purple) center content-box, 5px bottom url("test.png"), round no-repeat 10% / 10% url("test.png"), 5px bottom repeat linear-gradient(pink, purple), top left / cover, padding-box repeat url("test.png");
}
kv {
background: alpha(pink, 0.5) none repeat;
}
lv {
background: linear-gradient(pink, purple) repeat 5px bottom, none center round no-repeat content-box, content-box padding-box url("test.png") center / auto auto round no-repeat, center round no-repeat linear-gradient(pink, purple) content-box;
}
mv {
background: none content-box, linear-gradient(pink, purple) padding-box padding-box top left / auto auto, center padding-box content-box round no-repeat, round no-repeat url("test.png") border-box center / auto auto, border-box 10% round no-repeat url("test.png");
}
nv {
background: padding-box linear-gradient(pink, purple) center / 10%, content-box top left / cover, border-box content-box round no-repeat 10% / cover linear-gradient(pink, purple), round no-repeat padding-box top left / auto auto url("test.png"), repeat top left padding-box url("test.png"), content-box content-box repeat, currentColor url("test.png") 5px bottom round no-repeat;
}
ov {
background: top left / cover repeat border-box content-box, center / 10% none repeat, round no-repeat 10%, linear-gradient(pink, purple) 5px bottom / auto auto border-box content-box, round no-repeat none 10% content-box;
}
pv {
background: linear-gradient(pink, purple) center / auto auto, url("test.png") red padding-box;
}
qv {
background: repeat, 5px bottom round no-repeat linear-gradient(pink, purple), repeat center linear-gradient(pink, purple) padding-box border-box, top left / 10% none, top left round no-repeat url("test.png"), padding-box border-box linear-gradient(pink, purple) round no-repeat 5px bottom / cover red;
}
rv {
background: linear-gradient(pink, purple) padding-box border-box round no-repeat 10% / auto auto, top left repeat linear-gradient(pink, purple), border-box content-box round no-repeat, top left border-box repeat linear-gradient(pink, purple), center none repeat, url("test.png") padding-box, round no-repeat top left / 10% url("test.png"), border-box none;
}
sv {
background: 10% round no-repeat url("test.png"), border-box repeat red 10% / auto auto;
}
tv {
background: round no-repeat content-box border-box none, content-box round no-repeat, padding-box content-box repeat red;
}
uv {
background: repeat, top left / cover content-box repeat @home;
}
vv {
background: url("test.png") round no-repeat border-box padding-box, 5px bottom / auto auto padding-box border-box repeat, url("test.png") repeat padding-box padding-box, round no-repeat center, repeat none center content-box border-box, round no-repeat 5px bottom / auto auto url("test.png"), top left content-box repeat alpha(pink, 0.5);
}
wv {
background: content-box top left / cover repeat none, repeat padding-box content-box, round no-repeat center / 10% none, linear-gradient(pink, purple) 10% / auto auto round no-repeat, round no-repeat content-box linear-gradient(pink, purple) top left / cover, currentColor center repeat linear-gradient(pink, purple);
}
xv {
background: 5px bottom repeat, round no-repeat none padding-box 5px bottom, url("test.png"), repeat top left padding-box, none, url("test.png") center / cover round no-repeat content-box content-box, url("test.png") 10% border-box repeat, top left content-box linear-gradient(pink, purple) repeat, 10% @home linear-gradient(pink, purple) repeat;
}
yv {
background: linear-gradient(pink, purple) 5px bottom / cover round no-repeat border-box, top left content-box padding-box;
}
zv {
background: repeat border-box padding-box top left url("test.png"), @home round no-repeat border-box;
}
aw {
background: content-box top left, content-box url("test.png") round no-repeat, center padding-box none @home;
}
bw {
background: center linear-gradient(pink, purple) alpha(pink, 0.5) padding-box padding-box;
}
cw {
background: url("test.png") repeat border-box 10% / auto auto, 10% / 10% round no-repeat, content-box repeat 5px bottom, padding-box border-box round no-repeat, border-box round no-repeat linear-gradient(pink, purple), center #ADF round no-repeat padding-box content-box;
}
dw {
background: linear-gradient(pink, purple) border-box 10% repeat, repeat center content-box linear-gradient(pink, purple);
}
ew {
background: round no-repeat none 10%, url("test.png") top left content-box round no-repeat, 10% / 10%;
}
fw {
background: none center border-box round no-repeat, round no-repeat border-box padding-box url("test.png"), linear-gradient(pink, purple) 10%, repeat 10% content-box #ADF linear-gradient(pink, purple);
}
gw {
background: top left / cover repeat, border-box 10% / 10%, currentColor 10% linear-gradient(pink, purple) padding-box padding-box;
}
hw {
background: content-box round no-repeat, content-box none repeat, repeat content-box url("test.png") center, top left round no-repeat border-box content-box none;
}
iw {
background: url("test.png") top left, border-box red repeat;
}
jw {
background: currentColor round no-repeat border-box none center;
}
kw {
background: border-box linear-gradient(pink, purple) 10% repeat, repeat border-box 10% url("test.png"), 10%, center, 10% round no-repeat linear-gradient(pink, purple), round no-repeat linear-gradient(pink, purple), top left repeat, top left / 10% none #ADF border-box padding-box repeat;
}
lw {
background: round no-repeat padding-box center, content-box repeat 10% url("test.png"), padding-box center, border-box 5px bottom @home none;
}
mw {
background: content-box content-box 5px bottom, top left url("test.png") round no-repeat padding-box padding-box, round no-repeat url("test.png");
}
nw {
background: url("test.png") round no-repeat content-box, round no-repeat 5px bottom content-box content-box, repeat none, none, url("test.png") content-box, 5px bottom / auto auto round no-repeat content-box, center round no-repeat currentColor padding-box url("test.png");
}
ow {
background: content-box padding-box repeat top left linear-gradient(pink, purple), round no-repeat content-box padding-box 10%, red round no-repeat none border-box content-box;
}
pw {
background: border-box padding-box 5px bottom url("test.png"), repeat linear-gradient(pink, purple) 10%, round no-repeat none top left, none border-box round no-repeat, repeat top left / cover linear-gradient(pink, purple) content-box padding-box, border-box border-box center round no-repeat, content-box none repeat, content-box border-box top left / auto auto repeat linear-gradient(pink, purple);
}
qw {
background: content-box padding-box 5px bottom none, currentColor border-box top left none;
}
rw {
background: round no-repeat none, border-box none repeat, repeat content-box currentColor;
}
sw {
background: top left linear-gradient(pink, purple) repeat content-box, top left / 10% red border-box border-box;
}
tw {
background: border-box, center padding-box, linear-gradient(pink, purple) round no-repeat center / auto auto alpha(pink, 0.5);
}
uw {
background: border-box border-box top left, round no-repeat 10% border-box url("test.png"), url("test.png") border-box center / auto auto, 10% round no-repeat url("test.png") #ADF;
}
vw {
background: 5px bottom / cover round no-repeat padding-box padding-box, padding-box padding-box round no-repeat center, border-box none, url("test.png") repeat 10% / 10% content-box, content-box border-box linear-gradient(pink, purple) top left, linear-gradient(pink, purple) 10% repeat content-box, border-box padding-box 10% linear-gradient(pink, purple), url("test.png") top left, round no-repeat top left, 5px bottom / 10% linear-gradient(pink, purple) round no-repeat content-box, @home padding-box 10% linear-gradient(pink, purple);
}
ww {
background: padding-box 5px bottom repeat, repeat 10% / cover padding-box padding-box none, 10% / auto auto repeat, content-box 10% round no-repeat, content-box repeat none top left, round no-repeat border-box content-box 10%, 5px bottom border-box round no-repeat linear-gradient(pink, purple), url("test.png") content-box top left repeat, repeat 5px bottom / cover border-box none, padding-box padding-box 5px bottom url("test.png"), repeat linear-gradient(pink, purple) padding-box, content-box 10% none round no-repeat, url("test.png") border-box 10% / 10%, round no-repeat linear-gradient(pink, purple), url("test.png") 10% border-box padding-box, content-box round no-repeat, linear-gradient(pink, purple) repeat border-box top left / auto auto, none repeat padding-box top left, border-box 5px bottom url("test.png") repeat, none border-box 10% round no-repeat, padding-box, 10% / 10% url("test.png") padding-box border-box, url("test.png") center repeat, 5px bottom repeat padding-box, center round no-repeat content-box, url("test.png") repeat border-box, none, border-box round no-repeat top left, 5px bottom / cover repeat border-box, url("test.png") padding-box, padding-box top left / auto auto url("test.png") repeat, 10% repeat, 5px bottom / auto auto repeat padding-box alpha(pink, 0.5);
}
xw {
background: repeat, red center / 10%;
}
yw {
background: repeat content-box, repeat none padding-box 5px bottom / 10%, round no-repeat, none center / auto auto round no-repeat content-box content-box, content-box round no-repeat, top left @home url("test.png");
}
zw {
background: content-box content-box round no-repeat top left / cover, round no-repeat content-box padding-box top left;
}
ax {
background: padding-box content-box url("test.png") 5px bottom round no-repeat, round no-repeat border-box linear-gradient(pink, purple) top left, #ADF center linear-gradient(pink, purple) repeat content-box border-box;
}
bx {
background: none repeat center / 10%, top left none border-box content-box round no-repeat;
}
cx {
background: none padding-box 10%, center;
}
dx {
background: content-box 5px bottom / cover repeat linear-gradient(pink, purple), border-box content-box url("test.png"), top left / cover border-box content-box linear-gradient(pink, purple), content-box content-box none, padding-box 5px bottom repeat url("test.png"), linear-gradient(pink, purple) padding-box border-box 5px bottom, round no-repeat padding-box url("test.png") 5px bottom, repeat url("test.png") 5px bottom, none content-box repeat, repeat content-box top left linear-gradient(pink, purple), top left linear-gradient(pink, purple) border-box currentColor;
}
ex {
background: border-box repeat;
}
fx {
background: @home url("test.png") 10% / auto auto border-box content-box;
}
gx {
background: alpha(pink, 0.5) content-box padding-box round no-repeat;
}
hx {
background: 5px bottom / cover round no-repeat border-box, border-box round no-repeat 5px bottom url("test.png"), repeat padding-box center;
}
ix {
background: repeat border-box, content-box content-box 10% url("test.png") repeat, red content-box 5px bottom none repeat;
}
jx {
background: none repeat 5px bottom;
}
kx {
background: 5px bottom / 10% repeat currentColor none;
}
lx {
background: url("test.png") border-box top left round no-repeat, repeat center content-box, border-box linear-gradient(pink, purple) 5px bottom, content-box repeat, none top left / 10% padding-box round no-repeat;
}
mx {
background: 5px bottom round no-repeat linear-gradient(pink, purple) border-box padding-box, 5px bottom;
}
nx {
background: content-box content-box round no-repeat url("test.png") center / 10%, top left none repeat;
}
ox {
background: round no-repeat red top left / 10% none;
}
px {
background: 10% url("test.png") border-box border-box round no-repeat, padding-box border-box center repeat, content-box center / 10% url("test.png"), center content-box @home;
}
qx {
background: round no-repeat border-box top left, 5px bottom / auto auto repeat none border-box, 10% repeat content-box linear-gradient(pink, purple), 5px bottom currentColor repeat content-box;
}
rx {
background: content-box 5px bottom url("test.png") repeat, padding-box repeat, repeat padding-box top left / 10%, 5px bottom padding-box content-box url("test.png"), padding-box repeat linear-gradient(pink, purple), top left / 10% round no-repeat url("test.png") border-box, round no-repeat border-box content-box, top left url("test.png") padding-box round no-repeat, linear-gradient(pink, purple) border-box content-box round no-repeat 5px bottom, 10% / 10% padding-box #ADF url("test.png") round no-repeat;
}
sx {
background: url("test.png") border-box, none content-box padding-box center / cover, border-box center / 10% repeat url("test.png"), 5px bottom repeat border-box, padding-box repeat linear-gradient(pink, purple), url("test.png") 10% border-box content-box, padding-box 10% repeat, 10% / auto auto border-box border-box;
}
tx {
background: none center padding-box content-box, padding-box url("test.png") top left / cover repeat, border-box none 5px bottom, center round no-repeat padding-box, content-box repeat, repeat 10% padding-box content-box, padding-box linear-gradient(pink, purple) repeat top left, border-box repeat, linear-gradient(pink, purple) round no-repeat border-box top left, content-box padding-box 10% / cover none repeat, top left linear-gradient(pink, purple), content-box content-box none 5px bottom / cover, padding-box repeat @home 5px bottom / 10% url("test.png");
}
ux {
background: center repeat none border-box, border-box 5px bottom linear-gradient(pink, purple) round no-repeat, center / auto auto padding-box border-box, repeat 10%, 5px bottom / auto auto round no-repeat padding-box, linear-gradient(pink, purple) center, repeat 5px bottom padding-box padding-box none, border-box repeat center / 10%, repeat none top left content-box, round no-repeat none border-box, top left / 10% linear-gradient(pink, purple), url("test.png") border-box center, linear-gradient(pink, purple) round no-repeat border-box, round no-repeat border-box top left / 10%, none center padding-box, none round no-repeat padding-box red top left / 10%;
}
vx {
background: round no-repeat alpha(pink, 0.5) linear-gradient(pink, purple) center border-box;
}
wx {
background: center / auto auto padding-box repeat url("test.png"), border-box repeat linear-gradient(pink, purple), round no-repeat content-box currentColor;
}
xx {
background: 5px bottom round no-repeat border-box, repeat top left, linear-gradient(pink, purple) repeat, red padding-box center repeat;
}
yx {
background: 10% / cover none padding-box, none 5px bottom round no-repeat, 5px bottom / cover linear-gradient(pink, purple) border-box content-box round no-repeat, 5px bottom / auto auto none padding-box padding-box, url("test.png") round no-repeat 10% / 10%, content-box border-box round no-repeat none, none top left border-box currentColor;
}
zx {
background: url("test.png") content-box padding-box repeat, url("test.png") repeat 5px bottom, padding-box 10% / 10% none repeat currentColor;
}
ay {
background: border-box padding-box top left / cover round no-repeat, round no-repeat padding-box content-box linear-gradient(pink, purple) 5px bottom, top left round no-repeat;
}
by {
background: repeat none 5px bottom / 10% padding-box, linear-gradient(pink, purple) 10% round no-repeat, border-box padding-box linear-gradient(pink, purple) top left, padding-box content-box currentColor center round no-repeat url("test.png");
}
cy {
background: url("test.png") 10% / 10% repeat, @home top left url("test.png") content-box;
}
dy {
background: linear-gradient(pink, purple) top left repeat content-box, repeat none content-box, round no-repeat padding-box, 10% currentColor repeat padding-box;
}
ey {
background: linear-gradient(pink, purple) repeat border-box border-box, round no-repeat padding-box 10% / auto auto url("test.png"), content-box repeat, alpha(pink, 0.5) linear-gradient(pink, purple) top left / 10% repeat;
}
fy {
background: none repeat, round no-repeat red border-box border-box center;
}
gy {
background: 5px bottom / cover linear-gradient(pink, purple) content-box, center / 10% repeat linear-gradient(pink, purple), none repeat 10% / auto auto content-box content-box, @home linear-gradient(pink, purple) repeat top left border-box padding-box;
}
hy {
background: padding-box content-box 10% / auto auto currentColor round no-repeat;
}
iy {
background: #ADF url("test.png") top left round no-repeat;
}
jy {
background: 5px bottom url("test.png"), linear-gradient(pink, purple) padding-box 10% / cover, border-box padding-box center, center / cover repeat border-box url("test.png"), content-box none 10%, 5px bottom / 10% repeat content-box, repeat, round no-repeat url("test.png") content-box border-box, round no-repeat 10% linear-gradient(pink, purple), top left round no-repeat linear-gradient(pink, purple) content-box, padding-box center / 10% none, 5px bottom repeat content-box url("test.png"), linear-gradient(pink, purple) border-box border-box top left / 10%, none content-box center, content-box center url("test.png"), content-box none top left, top left none padding-box, round no-repeat content-box padding-box center / 10%, padding-box repeat 5px bottom linear-gradient(pink, purple), 5px bottom border-box padding-box url("test.png") round no-repeat, center / cover red url("test.png") repeat content-box padding-box;
}
ky {
background: alpha(pink, 0.5) url("test.png") content-box top left / auto auto;
}
ly {
background: repeat center / 10% border-box, none 10% / 10% repeat border-box;
}
my {
background: center none repeat, content-box top left none repeat, center none padding-box round no-repeat, url("test.png") round no-repeat padding-box, repeat border-box border-box none;
}
ny {
background: top left border-box linear-gradient(pink, purple) alpha(pink, 0.5) repeat;
}
oy {
background: padding-box 10% url("test.png"), top left none repeat, padding-box top left / cover round no-repeat, repeat padding-box border-box 10%, padding-box center none, repeat border-box border-box url("test.png") center, round no-repeat padding-box, center padding-box border-box round no-repeat url("test.png"), top left round no-repeat content-box none, 5px bottom border-box, url("test.png") repeat border-box content-box, border-box padding-box round no-repeat none, center red content-box repeat;
}
py {
background: url("test.png") content-box content-box round no-repeat, none repeat center border-box border-box, padding-box border-box 10% linear-gradient(pink, purple), content-box border-box, repeat url("test.png") border-box top left, border-box url("test.png") center repeat, none, border-box border-box top left repeat, top left / 10% repeat red url("test.png");
}
qy {
background: border-box center round no-repeat, none border-box content-box repeat, content-box border-box 10% / cover, repeat center / 10% url("test.png"), repeat, round no-repeat padding-box content-box top left / cover, top left none border-box, center / cover padding-box linear-gradient(pink, purple), content-box round no-repeat, content-box 5px bottom / cover @home url("test.png");
}
ry {
background: round no-repeat center padding-box, center / 10% round no-repeat border-box, padding-box none, content-box top left linear-gradient(pink, purple), url("test.png") border-box border-box;
}
sy {
background: top left / 10%, 5px bottom border-box, none repeat center content-box, round no-repeat padding-box, round no-repeat padding-box, 10% / auto auto, content-box round no-repeat, padding-box url("test.png"), border-box content-box top left, border-box 10% / 10% round no-repeat, none repeat, padding-box top left url("test.png"), border-box content-box url("test.png"), content-box border-box repeat none center / cover, round no-repeat 10% padding-box content-box, top left / auto auto round no-repeat, 5px bottom / cover repeat content-box none, top left currentColor padding-box padding-box;
}
ty {
background: 5px bottom content-box, none content-box, 5px bottom / auto auto repeat padding-box, linear-gradient(pink, purple), border-box linear-gradient(pink, purple) round no-repeat 5px bottom, 10% border-box repeat;
}
uy {
background: padding-box content-box linear-gradient(pink, purple), round no-repeat border-box, 10% / auto auto round no-repeat linear-gradient(pink, purple), url("test.png") round no-repeat border-box, url("test.png") round no-repeat padding-box 5px bottom, round no-repeat url("test.png") 10% / auto auto, 10% none border-box border-box, 5px bottom / 10% url("test.png") repeat red border-box;
}
vy {
background: round no-repeat 5px bottom url("test.png"), none padding-box repeat, 10% url("test.png"), 5px bottom url("test.png") repeat, content-box border-box round no-repeat 10% none, border-box border-box 10%, 5px bottom, border-box none repeat 5px bottom / auto auto, linear-gradient(pink, purple) repeat padding-box, 10% padding-box border-box repeat, 5px bottom / cover round no-repeat, padding-box content-box 10% none round no-repeat, linear-gradient(pink, purple) border-box 5px bottom / 10%, repeat padding-box padding-box top left none, linear-gradient(pink, purple) 5px bottom, linear-gradient(pink, purple) red 5px bottom round no-repeat;
}
wy {
background: url("test.png") 5px bottom / cover, 10% / auto auto linear-gradient(pink, purple), repeat 10% border-box, border-box url("test.png") 10% / cover, round no-repeat 5px bottom linear-gradient(pink, purple) padding-box, top left padding-box, repeat url("test.png"), round no-repeat padding-box 10%, border-box url("test.png"), linear-gradient(pink, purple) round no-repeat, linear-gradient(pink, purple), 5px bottom padding-box content-box, content-box 10% repeat, repeat 10%, content-box repeat none top left, none, center / cover url("test.png") content-box padding-box @home;
}
xy {
background: content-box center, padding-box center url("test.png"), top left linear-gradient(pink, purple), round no-repeat content-box padding-box none, repeat, repeat 10% url("test.png"), content-box content-box none top left, 5px bottom / cover round no-repeat, border-box round no-repeat, top left url("test.png") repeat;
}
yy {
background: round no-repeat url("test.png") border-box border-box center, padding-box border-box none top left, 5px bottom border-box round no-repeat, top left / 10% repeat border-box, linear-gradient(pink, purple), top left / cover repeat, padding-box padding-box 5px bottom repeat linear-gradient(pink, purple), 10% none, padding-box content-box linear-gradient(pink, purple) repeat, round no-repeat center padding-box linear-gradient(pink, purple), linear-gradient(pink, purple) round no-repeat, content-box content-box repeat 10%, none;
}
zy {
background: round no-repeat url("test.png"), center / 10% repeat, border-box center linear-gradient(pink, purple), repeat 5px bottom, padding-box padding-box round no-repeat none top left / auto auto, round no-repeat border-box border-box center, repeat content-box padding-box url("test.png"), 5px bottom none, none 5px bottom content-box, top left content-box padding-box round no-repeat, padding-box 5px bottom round no-repeat url("test.png"), round no-repeat border-box url("test.png") 10%, 10% / 10% repeat url("test.png") border-box content-box, content-box repeat @home 5px bottom / auto auto;
}
az {
background: repeat linear-gradient(pink, purple) border-box padding-box, round no-repeat 5px bottom linear-gradient(pink, purple), round no-repeat url("test.png") content-box border-box 10%, content-box border-box linear-gradient(pink, purple) @home 5px bottom;
}
bz {
background: round no-repeat border-box, top left content-box content-box, round no-repeat, round no-repeat padding-box, url("test.png") border-box 10% repeat, none padding-box content-box center, 5px bottom / cover none, url("test.png") round no-repeat, 5px bottom / auto auto, repeat 10% url("test.png") padding-box, repeat border-box url("test.png") 10% / cover, none 10% repeat, linear-gradient(pink, purple) border-box top left repeat, 5px bottom url("test.png"), content-box none 10% / 10%, round no-repeat none padding-box top left, none top left / cover, repeat none 5px bottom, 5px bottom border-box padding-box, repeat, round no-repeat padding-box padding-box linear-gradient(pink, purple), top left border-box repeat;
}
cz {
background: 10% content-box none, 5px bottom, top left, 5px bottom / 10% repeat none, linear-gradient(pink, purple) round no-repeat, none, center linear-gradient(pink, purple) padding-box repeat, top left / 10% url("test.png") content-box, url("test.png") 10% / 10% red;
}
dz {
background: border-box round no-repeat center / cover, border-box content-box round no-repeat, 10% / auto auto, repeat center / cover url("test.png") border-box, 5px bottom repeat border-box, url("test.png") 5px bottom / 10% #ADF content-box padding-box;
}
ez {
background: url("test.png") 10%, url("test.png") 10% round no-repeat, none content-box padding-box 5px bottom, padding-box 5px bottom / auto auto #ADF;
}
fz {
background: padding-box 5px bottom round no-repeat, repeat center padding-box, round no-repeat 5px bottom @home;
}
gz {
background: padding-box repeat url("test.png") 10%, round no-repeat center / cover padding-box border-box, url("test.png") 10% repeat, 5px bottom / 10% round no-repeat content-box;
}
hz {
background: none round no-repeat center / cover border-box, 10% content-box padding-box linear-gradient(pink, purple) repeat, url("test.png") round no-repeat padding-box content-box 10%, border-box padding-box repeat center / cover linear-gradient(pink, purple), 5px bottom #ADF round no-repeat border-box;
}
iz {
background: round no-repeat content-box linear-gradient(pink, purple) 10%, linear-gradient(pink, purple) border-box, center round no-repeat, center url("test.png") repeat border-box padding-box, top left / cover url("test.png"), url("test.png") repeat content-box center, top left / auto auto repeat, border-box none repeat;
}
jz {
background: padding-box content-box url("test.png"), round no-repeat content-box 5px bottom url("test.png"), repeat center / auto auto alpha(pink, 0.5);
}
kz {
background: linear-gradient(pink, purple) content-box padding-box repeat #ADF;
}
lz {
background: padding-box center @home repeat none;
}
mz {
background: none padding-box padding-box repeat, padding-box top left round no-repeat, repeat content-box url("test.png") 5px bottom / cover, linear-gradient(pink, purple) 10%, border-box content-box none, 10%;
}
nz {
background: repeat #ADF;
}
oz {
background: content-box padding-box linear-gradient(pink, purple) 10% / 10%, padding-box 5px bottom round no-repeat;
}
pz {
background: content-box 10% / cover repeat, round no-repeat @home url("test.png") border-box;
}
qz {
background: 5px bottom linear-gradient(pink, purple) repeat padding-box border-box, border-box linear-gradient(pink, purple) 5px bottom, padding-box padding-box round no-repeat, border-box border-box 10% repeat;
}
rz {
background: padding-box linear-gradient(pink, purple) repeat 5px bottom, border-box content-box, center / 10% border-box round no-repeat, border-box center round no-repeat url("test.png"), center / 10% none, center, none top left border-box currentColor;
}
sz {
background: top left @home content-box url("test.png") round no-repeat;
}
tz {
background: padding-box round no-repeat none, top left round no-repeat padding-box, content-box center / 10% url("test.png"), url("test.png"), content-box round no-repeat center url("test.png"), 10% padding-box, padding-box round no-repeat, border-box border-box none repeat, linear-gradient(pink, purple) border-box round no-repeat center, repeat url("test.png") 5px bottom / cover, padding-box padding-box top left / auto auto, center border-box repeat, round no-repeat center / cover, border-box linear-gradient(pink, purple) top left / cover, none repeat 10% border-box;
}
uz {
background: content-box 10% / 10% linear-gradient(pink, purple), padding-box content-box repeat url("test.png");
}
vz {
background: border-box round no-repeat top left, 10% repeat url("test.png"), repeat content-box content-box 5px bottom, center none round no-repeat, repeat currentColor content-box border-box url("test.png") 5px bottom / auto auto;
}
wz {
background: linear-gradient(pink, purple) 5px bottom padding-box, repeat center / auto auto border-box linear-gradient(pink, purple);
}
xz {
background: round no-repeat padding-box content-box;
}
yz {
background: content-box linear-gradient(pink, purple) top left, border-box 5px bottom, content-box repeat #ADF linear-gradient(pink, purple) 5px bottom;
}
zz {
background: repeat center, round no-repeat url("test.png") top left / cover, padding-box padding-box 5px bottom / auto auto, top left / 10% round no-repeat border-box, 5px bottom url("test.png") border-box, border-box linear-gradient(pink, purple) round no-repeat, border-box padding-box center / auto auto url("test.png"), round no-repeat border-box, 10% linear-gradient(pink, purple) round no-repeat content-box, repeat linear-gradient(pink, purple) center, padding-box content-box url("test.png") repeat, 10% repeat linear-gradient(pink, purple) content-box, repeat padding-box center / auto auto, none repeat, content-box center linear-gradient(pink, purple) round no-repeat, repeat content-box, 5px bottom / auto auto linear-gradient(pink, purple) content-box border-box repeat, content-box url("test.png") round no-repeat, repeat none, center round no-repeat url("test.png") content-box padding-box, round no-repeat 10% / auto auto url("test.png"), content-box border-box linear-gradient(pink, purple) repeat center, linear-gradient(pink, purple) 5px bottom / cover round no-repeat border-box, none, border-box round no-repeat center, linear-gradient(pink, purple) repeat, border-box padding-box linear-gradient(pink, purple) repeat, 10% / cover content-box round no-repeat, repeat none, repeat url("test.png") top left;
}
|