static SS parseCSSParameter(S s) { SS map = new LinkedHashMap; for (S x : trimAll(splitAt(s, ";"))) { LS y = trimAll(splitAtColon(x)); if (l(y) == 2) map.put(first(y), second(y)); } ret map; }