Variable: css--mdn-property-regexp

css--mdn-property-regexp is a variable defined in css-mode.el.gz.

Value

"\\_<\\(a\\(?:lign-\\(?:content\\|items\\|self\\)\\|nimation\\(?:-\\(?:d\\(?:elay\\|\\(?:irec\\|ura\\)tion\\)\\|fill-mode\\|iteration-count\\|name\\|play-state\\|timing-function\\)\\)?\\|zimuth\\)\\|b\\(?:ack\\(?:face-visibility\\|ground\\(?:-\\(?:attachment\\|c\\(?:lip\\|olor\\)\\|image\\|origin\\|position\\|repeat\\|size\\)\\)?\\)\\|o\\(?:rder\\(?:-\\(?:bottom\\(?:-\\(?:color\\|left-radius\\|right-radius\\|style\\|width\\)\\)?\\|col\\(?:lapse\\|or\\)\\|image\\(?:-\\(?:outset\\|repeat\\|s\\(?:\\(?:li\\|our\\)ce\\)\\|width\\)\\)?\\|left\\(?:-\\(?:color\\|style\\|width\\)\\)?\\|r\\(?:adius\\|ight\\(?:-\\(?:color\\|style\\|width\\)\\)?\\)\\|s\\(?:pacing\\|tyle\\)\\|top\\(?:-\\(?:color\\|left-radius\\|right-radius\\|style\\|width\\)\\)?\\|width\\)\\)?\\|ttom\\|x-\\(?:decoration-break\\|s\\(?:hadow\\|izing\\)\\)\\)\\|reak-\\(?:after\\|\\(?:befor\\|insid\\)e\\)\\)\\|c\\(?:a\\(?:ption-side\\|ret-color\\)\\|l\\(?:ear\\|ip\\(?:-\\(?:path\\|rule\\)\\)?\\)\\|o\\(?:l\\(?:or\\(?:-interpolation-filters\\)?\\|umn\\(?:-\\(?:count\\|fill\\|gap\\|rule\\(?:-\\(?:color\\|style\\|width\\)\\)?\\|span\\|width\\)\\|s\\)\\)\\|nt\\(?:ain\\|ent\\(?:-visibility\\)?\\)\\|unter-\\(?:\\(?:incremen\\|rese\\)t\\)\\)\\|u\\(?:e\\(?:-\\(?:after\\|before\\)\\)?\\|rsor\\)\\)\\|di\\(?:rection\\|splay\\)\\|e\\(?:levation\\|mpty-cells\\)\\|f\\(?:ilter\\|l\\(?:ex\\(?:-\\(?:basis\\|direction\\|flow\\|grow\\|shrink\\|wrap\\)\\)?\\|o\\(?:at\\|od-\\(?:color\\|opacity\\)\\)\\)\\|ont\\(?:-\\(?:f\\(?:amily\\|eature-settings\\)\\|kerning\\|language-override\\|s\\(?:ize\\(?:-adjust\\)?\\|t\\(?:retch\\|yle\\)\\|ynthesis\\)\\|variant\\(?:-\\(?:alternates\\|caps\\|east-asian\\|ligatures\\|numeric\\|position\\)\\)?\\|weight\\)\\)?\\)\\|grid\\(?:-\\(?:a\\(?:rea\\|uto-\\(?:columns\\|flow\\|rows\\)\\)\\|column\\(?:-\\(?:end\\|gap\\|start\\)\\)?\\|gap\\|row\\(?:-\\(?:end\\|gap\\|start\\)\\)?\\|template\\(?:-\\(?:\\(?:area\\|column\\|row\\)s\\)\\)?\\)\\)?\\|h\\(?:anging-punctuation\\|eight\\|yphens\\)\\|justify-\\(?:content\\|items\\|self\\)\\|l\\(?:e\\(?:ft\\|tter-spacing\\)\\|i\\(?:ghting-color\\|ne-\\(?:break\\|height\\)\\|st-style\\(?:-\\(?:image\\|position\\|type\\)\\)?\\)\\)\\|m\\(?:a\\(?:rgin\\(?:-\\(?:bottom\\|left\\|right\\|top\\)\\)?\\|sk\\(?:-\\(?:border\\(?:-\\(?:mode\\|outset\\|repeat\\|s\\(?:\\(?:li\\|our\\)ce\\)\\|width\\)\\)?\\|c\\(?:lip\\|omposite\\)\\|image\\|mode\\|origin\\|position\\|repeat\\|\\(?:siz\\|typ\\)e\\)\\)?\\|x-\\(?:height\\|lines\\|width\\)\\)\\|in-\\(?:height\\|width\\)\\)\\|nav-\\(?:down\\|left\\|right\\|up\\)\\|o\\(?:pacity\\|r\\(?:der\\|phans\\)\\|utline\\(?:-\\(?:color\\|offset\\|style\\|width\\)\\)?\\|verflow\\(?:-\\(?:wrap\\|[xy]\\)\\)?\\)\\|p\\(?:a\\(?:dding\\(?:-\\(?:bottom\\|left\\|right\\|top\\)\\)?\\|ge-break-\\(?:after\\|\\(?:befor\\|insid\\)e\\)\\|use\\(?:-\\(?:after\\|before\\)\\)?\\)\\|erspective\\(?:-origin\\)?\\|itch\\(?:-range\\)?\\|la\\(?:ce-\\(?:content\\|items\\|self\\)\\|y-during\\)\\|osition\\)\\|quotes\\|r\\(?:esize\\|i\\(?:chness\\|ght\\)\\)\\|s\\(?:pe\\(?:ak\\(?:-\\(?:header\\|numeral\\|punctuation\\)\\)?\\|ech-rate\\)\\|tress\\)\\|t\\(?:ab\\(?:-size\\|le-layout\\)\\|ext-\\(?:align\\(?:-last\\)?\\|combine-upright\\|decoration\\(?:-\\(?:color\\|line\\|s\\(?:kip\\|tyle\\)\\)\\)?\\|emphasis\\(?:-\\(?:color\\|position\\|style\\)\\)?\\|indent\\|justify\\|o\\(?:rientation\\|verflow\\)\\|shadow\\|transform\\|underline-position\\)\\|o\\(?:p\\|uch-action\\)\\|rans\\(?:form\\(?:-\\(?:origin\\|style\\)\\)?\\|ition\\(?:-\\(?:d\\(?:elay\\|uration\\)\\|property\\|timing-function\\)\\)?\\)\\)\\|unicode-bidi\\|v\\(?:ertical-align\\|isibility\\|o\\(?:ice-family\\|lume\\)\\)\\|w\\(?:hite-space\\|i\\(?:d\\(?:ows\\|th\\)\\|ll-change\\)\\|ord-\\(?:break\\|spacing\\|wrap\\)\\|riting-mode\\)\\|z-index\\)\\s-*\\(?:\\=\\|:\\)"

Documentation

Regular expression to match a CSS property.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/css-mode.el.gz
(defconst css--mdn-property-regexp
  (concat "\\_<" (regexp-opt css-property-ids t) "\\s-*\\(?:\\=\\|:\\)")
  "Regular expression to match a CSS property.")