Расширение Emmet-подобных сокращений для встроенного редактора Far Manager. Набираете короткую аббревиатуру, нажимаете Ctrl+E — и получаете готовую HTML-разметку или CSS-свойство.
Поддерживаются HTML/XSL и CSS (свойства, значения, @media и другие
@-правила). Движок — чистый Lua, порт оригинального
emmet.js.
Скачать архив Emmet: faremmet.7z
(страница загрузки — download.php).
%APPDATA%\Far Manager\Profile\Macros\scripts\.
Или из корня проекта запустите deploy.cmd — он скопирует
emmet_far.lua, emmet.lua и snippets.lua
в ту же папку.ul>li*3 и нажмите Ctrl+E.<ul> с тремя
<li>, а курсор встать внутрь первого элемента. В тексте
не должно оставаться никаких маркеров вроде ${0}.Раскрытие происходит только когда курсор стоит сразу после аббревиатуры (в том числе в середине строки — раскроется только она, всё, что слева, останется на месте).
Куда встанет курсор после раскрытия:
@media — внутрь тела).Определяется автоматически по расширению открытого файла:
| Расширение | Синтаксис |
|---|---|
.html и прочие | html |
.xml, .xsl | xsl |
.css, .scss, .less | css |
В .html-файлах CSS-аббревиатуры раскрываются и внутри тега
<style>…</style>: пока курсор находится в открытом
CSS-блоке, используется синтаксис css. Вне <style> —
обычный html.
| Аббревиатура | Результат |
|---|---|
div | <div></div> — курсор между тегами |
ul>li*3 | <ul> с тремя <li></li> |
div#page.wrap | <div id="page" class="wrap"> |
a[href="#"] | <a href="#"> |
p{Hello} | <p>Hello</p> |
(h2+p)*2 | две пары h2+p |
ul>li.item$*3 | нумерация item1..item3 |
div#x>p|c | то же + комментарий <!-- /#x --> |
! или html:5 | каркас HTML5-документа |
| Оператор | Пример | Описание |
|---|---|---|
> | div>span | вложенность (ребёнок) |
+ | h2+p | соседний элемент |
^ | div>p^span | подъём на уровень выше |
* | li*5 | умножение |
() | (h2+p)*2 | группировка |
# | div#id | атрибут id |
. | div.cls | атрибут class |
[] | a[href target] | атрибуты |
{} | a{Текст} | текстовое содержимое |
$ | li.item$ | счётчик |
|s | ul>li*3|s | фильтр «в одну строку» |
|c | div#x>p|c | фильтр «комментарий» |
Символ $ в имени, классе или тексте заменяется на порядковый
номер. Несколько $$$ — с нулями
(.item$$ → item01..item99).
Модификаторы: $@- — обратный отсчёт,
$@3 — старт с 3.
ul>li.item$@-*3 → item3, item2, item1
ul>li.item$@3*2 → item3, item4
Сокращения работают в .css/.less/.scss
файлах и внутри <style> в HTML. Свойство — это короткое имя
(см. ниже), значение пишется сразу после него, без пробела.
Значения · Функции · Бордеры · Фон и цвет · Шрифт и текст · Размеры и отступы · Раскладка · Тени, трансформации, анимации · Списки и таблицы · @-правила · Псевдоклассы
| Аббревиатура | Результат | Правило |
|---|---|---|
w100 | width: 100px; | число без единицы → px |
w12.5 | width: 12.5em; | число с точкой → em |
h50p, w10e, w10r, w10x | 50%, 10em, 10rem, 10ex | суффиксы единиц: p→%, e→em, r→rem, x→ex |
lh1.5, z10, op.5 | line-height: 1.5;, z-index: 10;, opacity: .5; | без единицы: line-height, z-index, opacity, font-weight, zoom |
mt-10 | margin-top: -10px; | минус перед числом — отрицательное значение |
m10-20-30-40 | margin: 10px 20px 30px 40px; | несколько значений через дефис |
m10-a | margin: 10px auto; | ключевые слова: a=auto, i=inherit, s=solid, da=dashed, do=dotted, t=transparent |
c#f00 | color: #f00; | цвет через #: #ff0000 → #f00, #t → transparent |
w100! | width: 100px !important; | восклицательный знак в конце — !important |
mtf → mtf: ;.
CSS-функции rgb(), translate(), url() и т.п.
— это готовые сниппеты словаря. Аргументы подставляются значениями по умолчанию,
которые правятся на месте (курсор встаёт в первую незаполненную позицию):
| Аббревиатура | Результат |
|---|---|
c:r, c:ra | color: rgb(0, 0, 0);, rgba(0, 0, 0, .5); |
bxsh:r, bxsh:ra | box-shadow: inset hoff voff blur rgb(…); / rgba(…) |
tsh:r, tsh:ra | text-shadow: h v blur rgb(…); / rgba(…) |
trf:t, trf:tx, trf:ty | transform: translate(x, y);, translateX(x);, translateY(y); |
trf:r, trf:sc, trf:scx, trf:scy | transform: rotate(angle);, scale(x, y);, scaleX(x);, scaleY(y); |
trf:skx, trf:sky | transform: skewX(angle);, skewY(angle); |
animtf:cb | animation-timing-function: cubic-bezier(0.1, 0.7, 1.0, 1.0); |
bgi, bg+, @i, @f | background-image: url();, background: #fff url() 0 0 no-repeat;, @import url();, блок @font-face |
cnt:a | content: attr(); |
hsl()/hsla(), градиенты (lg, lgs,
rg, cg), calc(), var(),
min()/max() — в словаре нет, пишутся вручную
(background: linear-gradient(...)). Если набрать lg,
получится заготовка lg: ;.
За bd («border») через дефис идут ширина, стиль и цвет:
bd1-s#f00 → border: 1px solid #f00;.
| Аббревиатура | Результат |
|---|---|
bd | border: ; — курсор у значения |
bd+ | border: 1px solid #000; — готовый шаблон |
bd1-s#f00 | border: 1px solid #f00; |
bd:n | border: none; |
bdw2 | border-width: 2px; |
bds:s | border-style: solid; |
bdc#f00 | border-color: #f00; |
bdc:t | border-color: transparent; |
bdcl:c | border-collapse: collapse; (таблицы) |
Стороны:
| Сторона | Шаблон | Ширина | Стиль | Цвет |
|---|---|---|---|---|
верх — bdt / bt | bdt+ | bdtw | bdts | bdtc |
право — bdr / br | bdr+ | bdrw | bdrst | bdrc |
низ — bdb / bb | bdb+ | bdbw | bdbs | bdbc |
лево — bdl / bl | bdl+ | bdlw | bdls | bdlc |
Например: bdt1-s#00f → border-top: 1px solid #00f;
Стили: s=solid, dt=dotted, ds=dashed, db=double,
g=groove, r=ridge, i=inset, o=outset,
h=hidden, n=none. Пример: bds:dt → border-style: dotted;
Скругления: bdrs10 → border-radius: 10px;, bdrs50% → border-radius: 50%;.
Углы — bdtlrs, bdtrrs, bdbrrs, bdblrs.
| Аббревиатура | Результат |
|---|---|
bg, bg:n | background: ;, background: none; |
bg+ | background: #fff url() 0 0 no-repeat; |
bgc, bgc#f00, bgc:t | background-color: #fff;, …#f00;, …transparent; |
bgi, bgi:n | background-image: url();, …none; |
bgr:n, bgr:x, bgr:y | background-repeat: no-repeat;, repeat-x;, repeat-y; |
bga:f, bga:s | background-attachment: fixed;, scroll; |
bgp, bgp10-20 | background-position: 0 0;, …10px 20px; |
bgsz:cv, bgsz:ct | background-size: cover;, contain; |
bgcp:bb, bgcp:pb, bgcp:cb | background-clip: border-box;, padding-box;, content-box; |
c, c#f00 | color: #000;, color: #f00; |
c:r, c:ra | color: rgb(0, 0, 0);, rgba(0, 0, 0, .5); |
| Аббревиатура | Результат |
|---|---|
fz14, fz1.2e, fz13p | font-size: 14px;, 1.2em;, 13%; |
fw:b, fw:n | font-weight: bold;, normal; |
fs:i, fs | font-style: italic; (без значения — italic) |
ff:ss, ff:s, ff:m | font-family: sans-serif;, serif;, monospace; |
f+ | font: 1em Arial,sans-serif; |
lh1.5, lh2 | line-height: 1.5;, 2; |
lts, wos | letter-spacing: ;, word-spacing: ; |
ta:c, ta:r, ta:j | text-align: center;, right;, justify; |
td:u, td:o, td:l, td:n | text-decoration: underline;, overline;, line-through;, none; |
tt:u, tt:c, tt:l | text-transform: uppercase;, capitalize;, lowercase; |
ti:- | text-indent: -9999px; |
tov:e, tov:c | text-overflow: ellipsis;, clip; |
tsh, tsh+, tsh:n | text-shadow: hoff voff blur #000;, 0 0 0 #000;, none; |
va:m, va:t, va:b, va:sup | vertical-align: middle;, top;, bottom;, super; |
whs:nw, whs:p | white-space: nowrap;, pre; |
wow:b, wob:ba | word-wrap: break-word;, word-break: break-all; |
cnt | content: '…'; — курсор в кавычках |
| Аббревиатура | Результат |
|---|---|
m10, m10-20-30-40, m10-a, m:a | margin: 10px;, 10px 20px 30px 40px;, 10px auto;, auto; |
mt, mr, mb, ml | margin-top/right/bottom/left: ; (и с числом: mt10, mt-10) |
p0, p0-a, p10-20 | padding: 0;, 0 auto;, 10px 20px; |
pt, pr, pb, pl | padding-top/right/bottom/left: ; |
w100, h50%, h:a, w:a | width: 100px;, height: 50%;, auto; |
maw, mah, miw, mih | max-width/height: ;, min-width/height: ; |
bxz, bxz:cb | box-sizing: border-box;, content-box; |
| Аббревиатура | Результат |
|---|---|
d:n, d:b, d:i, d:ib, d:tb, d:tbc | display: none;, block;, inline;, inline-block;, table;, table-cell; |
pos:a, pos:r, pos:f, pos:s | position: absolute;, relative;, fixed;, static; |
t, r, b, l | top/right/bottom/left: ; — с числом t10 → top: 10px;, t:a → auto; |
z10 | z-index: 10; |
fl:l, fl:r, fl:n | float: left;, right;, none; |
cl:b, cl:l, cl:r, cl:n | clear: both;, left;, right;, none; |
v:h, v:v, v:c | visibility: hidden;, visible;, collapse; |
ov:h, ov:a, ov:s, ov:v | overflow: hidden;, auto;, scroll;, visible; |
ovx:h, ovy:a | overflow-x: hidden;, overflow-y: auto; |
rsz:n, rsz:h, rsz:v, rsz:b | resize: none;, horizontal;, vertical;, both; |
cur:p, cur:m, cur:t, cur:c | cursor: pointer;, move;, text;, crosshair; |
op.5, zoo | opacity: .5;, zoom: 1; |
| Аббревиатура | Результат |
|---|---|
bxsh, bxsh:n | box-shadow: inset hoff voff blur color;, none; |
trf:r, trf:sc, trf:tx, trf:ty, trf:skx, trf:sky | transform: rotate(…);, scale(…);, translateX/Y(…);, skewX/Y(…); |
trfs, trfo | transform-style: preserve-3d;, transform-origin: ; |
trs, trsdu1s, trsde.2s, trsp, trstf | transition: prop time;, transition-duration: 1s;, transition-delay: .2s; и др. |
anim, anim- | animation: ; / полный шаблон: имя, длительность, тайминг, задержка… |
animn, animdur2s, animdel1s, animic:i | animation-name: none;, animation-duration: 2s;, animation-delay: 1s;, animation-iteration-count: infinite; |
animdir:r, animtf:e, animfm:f, animps:p | animation-direction: reverse;, animation-timing-function: ease;, animation-fill-mode: forwards;, animation-play-state: paused; |
| Аббревиатура | Результат |
|---|---|
list, list:n, list:s, list:d, list:dc | list-style-type: ;, none;, square;, disc;, decimal; |
lisp:i, lisp:o, lisi:n, lis | list-style-position: inside;, outside;, list-style-image: none;, list-style: ; |
tbl, tbl:f, cps:t, ec:h | table-layout: ;, fixed;, caption-side: top;, empty-cells: hide; |
| Аббревиатура | Результат |
|---|---|
@m | @media screen { … } — курсор в теле (можно заменить screen) |
@i | @import url(); — курсор в скобках |
@f, @f+ | блок @font-face (краткий / полный со шрифтовыми форматами) |
@kf | блок @keyframes с вендорными префиксами |
cm | /* … */ — комментарий |
! | !important |
Это расширение нашей реализации: в оригинальном Emmet таких сокращений нет,
селекторы пишутся вручную. У нас аббревиатура, начинающаяся с :,
раскрывается в псевдокласс или псевдоэлемент:
| Аббревиатура | Результат |
|---|---|
:h, :a, :fo, :v, :li, :t | :hover, :active, :focus, :visited, :link, :target |
:fc, :lc, :oc, :ec | :first-child, :last-child, :only-child, :empty |
:ch, :d, :e, :r, :i, :va, :ro | :checked, :disabled, :enabled, :required, :invalid, :valid, :root |
:n, :n2, :nodd, :neven, :n2n | :nth-child(), :nth-child(2), :nth-child(odd), :nth-child(even), :nth-child(2n) |
:no, :noinput | :not(), :not(input) |
:b, ::b, :af | ::before, ::before, ::after — двойное двоеточие не обязательно |
:pl, :se, :m, :fl, :fe | ::placeholder, ::selection, ::marker, ::first-line, ::first-letter |
:hover, ::before,
:nth-child(2n+1), :not(.disabled), :has(...).
Одиночное двоеточие у псевдоэлемента приводится к двойному: :before → ::before.
Селектор с псевдоклассом тоже не трогается: div:hover, .a::after
остаются как напечатаны. Всё работает в .css-файлах и внутри
<style>. Нюанс: если в выражении есть +
(:nth-child(2n+1)), наберите его полным именем — при раскрытии
аббревиатура заканчивается на символе +.
В выводах Emmet и в примерах этой справки встречаются маркеры
${0}, ${1:default}, ${2}. Это стандарт
emmet.js: в редакторах с поддержкой Emmet они невидимы, а по Tab
курсор перескакивает между ними.
В нашей реализации навигации по табстопам пока нет, поэтому макрос убирает маркеры при раскрытии — в документ они не записываются:
${0} — удаляется, на его место встаёт курсор
(например, div даёт <div></div> с курсором между тегами);${1:default} — превращается в текст по умолчанию
(html:5 даёт <title>Document</title>,
@m — @media screen {);${2} — превращается в пустое место.
Помимо сокращений работают готовые фрагменты: ! / html:5
(каркас HTML5), link:css, script:src, img,
br, bq → <blockquote> и другие.
Полный словарь — в файле snippets.lua рядом с движком.
${0}, а
${1:default} подставляется текстом по умолчанию. Перехода
по Tab между позициями нет.df даст
df: ;, а не display: table-footer-group;.us
даёт только user-select: ... без -webkit-/-moz-.
Это маркеры позиций ввода из оригинального Emmet (там они невидимы, и по
Tab можно переходить между ними). У нас навигации нет, поэтому при
раскрытии маркеры удаляются: на месте ${0} встаёт курсор, а
${1:default} превращается в текст по умолчанию. В документ
маркеры не записываются.
Скорее всего курсор стоит не сразу после аббревиатуры или после неё есть пробел. Аббревиатура должна заканчиваться ровно на позиции курсора.
Макрос не установлен или упал при старте. Повторите deploy.cmd и
проверьте журнал ошибок (Alt+F8).
Поддерживается: эти расширения уже отнесены к синтаксису css.
Все 566 сокращений из словаря snippets.lua (сгенерировано движком). В таблицах — результат, который попадёт в документ (маркеры уже убраны). Раскройте раздел по категории.
| Аббревиатура | Результат |
|---|---|
bb | border-bottom: ; |
bd | border: ; |
bd+ | border: 1px solid #000; |
bd:n | border: none; |
bdb | border-bottom: ; |
bdb+ | border-bottom: 1px solid #000; |
bdb:n | border-bottom: none; |
bdbc | border-bottom-color: #000; |
bdbc:t | border-bottom-color: transparent; |
bdbi | border-bottom-image: url(); |
bdbi:n | border-bottom-image: none; |
bdbk | border-break: close; |
bdbk:c | border-break: close; |
bdbli | border-bottom-left-image: url(); |
bdbli:c | border-bottom-left-image: continue; |
bdbli:n | border-bottom-left-image: none; |
bdblrs | border-bottom-left-radius: ; |
bdbri | border-bottom-right-image: url(); |
bdbri:c | border-bottom-right-image: continue; |
bdbri:n | border-bottom-right-image: none; |
bdbrrs | border-bottom-right-radius: ; |
bdbs | border-bottom-style: ; |
bdbs:n | border-bottom-style: none; |
bdbw | border-bottom-width: ; |
bdc | border-color: #000; |
bdc:t | border-color: transparent; |
bdci | border-corner-image: url(); |
bdci:c | border-corner-image: continue; |
bdci:n | border-corner-image: none; |
bdcl | border-collapse: ; |
bdcl:c | border-collapse: collapse; |
bdcl:s | border-collapse: separate; |
bdf | border-fit: repeat; |
bdf:c | border-fit: clip; |
bdf:of | border-fit: overflow; |
bdf:ow | border-fit: overwrite; |
bdf:r | border-fit: repeat; |
bdf:sc | border-fit: scale; |
bdf:sp | border-fit: space; |
bdf:st | border-fit: stretch; |
bdi | border-image: url(); |
bdi:n | border-image: none; |
bdl | border-left: ; |
bdl+ | border-left: 1px solid #000; |
bdl:n | border-left: none; |
bdlc | border-left-color: #000; |
bdlc:t | border-left-color: transparent; |
bdlen | border-length: ; |
bdlen:a | border-length: auto; |
bdli | border-left-image: url(); |
bdli:n | border-left-image: none; |
bdls | border-left-style: ; |
bdls:n | border-left-style: none; |
bdlw | border-left-width: ; |
bdr | border-right: ; |
bdr+ | border-right: 1px solid #000; |
bdr:n | border-right: none; |
bdrc | border-right-color: #000; |
bdrc:t | border-right-color: transparent; |
bdri | border-right-image: url(); |
bdri:n | border-right-image: none; |
bdrs | border-radius: ; |
bdrst | border-right-style: ; |
bdrst:n | border-right-style: none; |
bdrw | border-right-width: ; |
bds | border-style: ; |
bds:db | border-style: double; |
bds:ds | border-style: dashed; |
bds:dt | border-style: dotted; |
bds:dtds | border-style: dot-dash; |
bds:dtdtds | border-style: dot-dot-dash; |
bds:g | border-style: groove; |
bds:h | border-style: hidden; |
bds:i | border-style: inset; |
bds:n | border-style: none; |
bds:o | border-style: outset; |
bds:r | border-style: ridge; |
bds:s | border-style: solid; |
bds:w | border-style: wave; |
bdsp | border-spacing: ; |
bdt | border-top: ; |
bdt+ | border-top: 1px solid #000; |
bdt:n | border-top: none; |
bdtc | border-top-color: #000; |
bdtc:t | border-top-color: transparent; |
bdti | border-top-image: url(); |
bdti:n | border-top-image: none; |
bdtli | border-top-left-image: url(); |
bdtli:c | border-top-left-image: continue; |
bdtli:n | border-top-left-image: none; |
bdtlrs | border-top-left-radius: ; |
bdtri | border-top-right-image: url(); |
bdtri:c | border-top-right-image: continue; |
bdtri:n | border-top-right-image: none; |
bdtrrs | border-top-right-radius: ; |
bdts | border-top-style: ; |
bdts:n | border-top-style: none; |
bdtw | border-top-width: ; |
bdw | border-width: ; |
bl | border-left: ; |
br | border-right: ; |
bt | border-top: ; |
ol | outline: ; |
ol:n | outline: none; |
olc | outline-color: #000; |
olc:i | outline-color: invert; |
olo | outline-offset: ; |
ols | outline-style: ; |
olw | outline-width: ; |
| Аббревиатура | Результат |
|---|---|
ap | appearance: none; |
bg | background: ; |
bg+ | background: #fff url() 0 0 no-repeat; |
bg:ie | filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='x.png',sizingMethod='crop'); |
bg:n | background: none; |
bga | background-attachment: ; |
bga:f | background-attachment: fixed; |
bga:s | background-attachment: scroll; |
bgbk | background-break: ; |
bgbk:bb | background-break: bounding-box; |
bgbk:c | background-break: continuous; |
bgbk:eb | background-break: each-box; |
bgc | background-color: #fff; |
bgc:t | background-color: transparent; |
bgcp | background-clip: padding-box; |
bgcp:bb | background-clip: border-box; |
bgcp:cb | background-clip: content-box; |
bgcp:nc | background-clip: no-clip; |
bgcp:pb | background-clip: padding-box; |
bgi | background-image: url(); |
bgi:n | background-image: none; |
bgo | background-origin: ; |
bgo:bb | background-origin: border-box; |
bgo:cb | background-origin: content-box; |
bgo:pb | background-origin: padding-box; |
bgp | background-position: 0 0; |
bgpx | background-position-x: ; |
bgpy | background-position-y: ; |
bgr | background-repeat: ; |
bgr:n | background-repeat: no-repeat; |
bgr:rd | background-repeat: round; |
bgr:sp | background-repeat: space; |
bgr:x | background-repeat: repeat-x; |
bgr:y | background-repeat: repeat-y; |
bgsz | background-size: ; |
bgsz:a | background-size: auto; |
bgsz:ct | background-size: contain; |
bgsz:cv | background-size: cover; |
c | color: #000; |
c:r | color: rgb(0, 0, 0); |
c:ra | color: rgba(0, 0, 0, .5); |
lg | background-image: linear-gradient(); |
op | opacity: ; |
op:ie | filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100); |
| Аббревиатура | Результат |
|---|---|
bxz | box-sizing: border-box; |
bxz:bb | box-sizing: border-box; |
bxz:cb | box-sizing: content-box; |
cp | clip: ; |
cp:a | clip: auto; |
cp:r | clip: rect(top right bottom left); |
h | height: ; |
h:a | height: auto; |
m | margin: ; |
m:a | margin: auto; |
mah | max-height: ; |
mah:n | max-height: none; |
mar | max-resolution: res; |
maw | max-width: ; |
maw:n | max-width: none; |
mb | margin-bottom: ; |
mb:a | margin-bottom: auto; |
mih | min-height: ; |
mir | min-resolution: res; |
miw | min-width: ; |
ml | margin-left: ; |
ml:a | margin-left: auto; |
mr | margin-right: ; |
mr:a | margin-right: auto; |
mt | margin-top: ; |
mt:a | margin-top: auto; |
p | padding: ; |
pb | padding-bottom: ; |
pl | padding-left: ; |
pr | padding-right: ; |
pt | padding-top: ; |
rsz | resize: ; |
rsz:b | resize: both; |
rsz:h | resize: horizontal; |
rsz:n | resize: none; |
rsz:v | resize: vertical; |
w | width: ; |
w:a | width: auto; |
zm | zoom: 1; |
zoo | zoom: 1; |
| Аббревиатура | Результат |
|---|---|
cg | column-gap: ; |
cl | clear: both; |
cl:b | clear: both; |
cl:l | clear: left; |
cl:n | clear: none; |
cl:r | clear: right; |
colm | columns: ; |
colmc | column-count: ; |
colmf | column-fill: ; |
colmg | column-gap: ; |
colmr | column-rule: ; |
colmrc | column-rule-color: ; |
colmrs | column-rule-style: ; |
colmrw | column-rule-width: ; |
colms | column-span: ; |
colmw | column-width: ; |
d | display: block; |
d:b | display: block; |
d:cp | display: compact; |
d:i | display: inline; |
d:ib | display: inline-block; |
d:itb | display: inline-table; |
d:li | display: list-item; |
d:n | display: none; |
d:rb | display: ruby; |
d:rbb | display: ruby-base; |
d:rbbg | display: ruby-base-group; |
d:rbt | display: ruby-text; |
d:rbtg | display: ruby-text-group; |
d:ri | display: run-in; |
d:tb | display: table; |
d:tbc | display: table-cell; |
d:tbcl | display: table-column; |
d:tbclg | display: table-column-group; |
d:tbcp | display: table-caption; |
d:tbfg | display: table-footer-group; |
d:tbhg | display: table-header-group; |
d:tbr | display: table-row; |
d:tbrg | display: table-row-group; |
fl | float: left; |
fl:l | float: left; |
fl:n | float: none; |
fl:r | float: right; |
ov | overflow: hidden; |
ov:a | overflow: auto; |
ov:h | overflow: hidden; |
ov:s | overflow: scroll; |
ov:v | overflow: visible; |
ovs | overflow-style: scrollbar; |
ovs:a | overflow-style: auto; |
ovs:m | overflow-style: move; |
ovs:mq | overflow-style: marquee; |
ovs:p | overflow-style: panner; |
ovs:s | overflow-style: scrollbar; |
ovx | overflow-x: hidden; |
ovx:a | overflow-x: auto; |
ovx:h | overflow-x: hidden; |
ovx:s | overflow-x: scroll; |
ovx:v | overflow-x: visible; |
ovy | overflow-y: hidden; |
ovy:a | overflow-y: auto; |
ovy:h | overflow-y: hidden; |
ovy:s | overflow-y: scroll; |
ovy:v | overflow-y: visible; |
pos | position: relative; |
pos:a | position: absolute; |
pos:f | position: fixed; |
pos:r | position: relative; |
pos:s | position: static; |
us | user-select: none; |
v | visibility: hidden; |
v:c | visibility: collapse; |
v:h | visibility: hidden; |
v:v | visibility: visible; |
z | z-index: ; |
z:a | z-index: auto; |
| Аббревиатура | Результат |
|---|---|
cnt | content: ''; |
cnt:a | content: attr(); |
cnt:c | content: counter(); |
cnt:cq | content: close-quote; |
cnt:cs | content: counters(); |
cnt:n | content: normal; |
cnt:ncq | content: no-close-quote; |
cnt:noq | content: no-open-quote; |
cnt:oq | content: open-quote; |
coi | counter-increment: ; |
cor | counter-reset: ; |
ct | content: ; |
ct:a | content: attr(); |
ct:c | content: counter(); |
ct:cq | content: close-quote; |
ct:cs | content: counters(); |
ct:n | content: normal; |
ct:ncq | content: no-close-quote; |
ct:noq | content: no-open-quote; |
ct:oq | content: open-quote; |
cur | cursor: pointer; |
cur:a | cursor: auto; |
cur:c | cursor: crosshair; |
cur:d | cursor: default; |
cur:ha | cursor: hand; |
cur:he | cursor: help; |
cur:m | cursor: move; |
cur:p | cursor: pointer; |
cur:t | cursor: text; |
f | font: ; |
f+ | font: 1em Arial,sans-serif; |
fef | font-effect: ; |
fef:eb | font-effect: emboss; |
fef:eg | font-effect: engrave; |
fef:n | font-effect: none; |
fef:o | font-effect: outline; |
fem | font-emphasize: ; |
femp | font-emphasize-position: ; |
femp:a | font-emphasize-position: after; |
femp:b | font-emphasize-position: before; |
fems | font-emphasize-style: ; |
fems:ac | font-emphasize-style: accent; |
fems:c | font-emphasize-style: circle; |
fems:ds | font-emphasize-style: disc; |
fems:dt | font-emphasize-style: dot; |
fems:n | font-emphasize-style: none; |
ff | font-family: ; |
ff:c | font-family: cursive; |
ff:f | font-family: fantasy; |
ff:m | font-family: monospace; |
ff:s | font-family: serif; |
ff:ss | font-family: sans-serif; |
fs | font-style: italic; |
fs:i | font-style: italic; |
fs:n | font-style: normal; |
fs:o | font-style: oblique; |
fsm | font-smooth: ; |
fsm:a | font-smooth: auto; |
fsm:aw | font-smooth: always; |
fsm:n | font-smooth: never; |
fst | font-stretch: ; |
fst:c | font-stretch: condensed; |
fst:e | font-stretch: expanded; |
fst:ec | font-stretch: extra-condensed; |
fst:ee | font-stretch: extra-expanded; |
fst:n | font-stretch: normal; |
fst:sc | font-stretch: semi-condensed; |
fst:se | font-stretch: semi-expanded; |
fst:uc | font-stretch: ultra-condensed; |
fst:ue | font-stretch: ultra-expanded; |
fv | font-variant: ; |
fv:n | font-variant: normal; |
fv:sc | font-variant: small-caps; |
fw | font-weight: ; |
fw:b | font-weight: bold; |
fw:br | font-weight: bolder; |
fw:lr | font-weight: lighter; |
fw:n | font-weight: normal; |
fz | font-size: ; |
fza | font-size-adjust: ; |
fza:n | font-size-adjust: none; |
lh | line-height: ; |
lis | list-style: ; |
lis:n | list-style: none; |
lisi | list-style-image: ; |
lisi:n | list-style-image: none; |
lisp | list-style-position: ; |
lisp:i | list-style-position: inside; |
lisp:o | list-style-position: outside; |
list | list-style-type: ; |
list:c | list-style-type: circle; |
list:d | list-style-type: disc; |
list:dc | list-style-type: decimal; |
list:dclz | list-style-type: decimal-leading-zero; |
list:lr | list-style-type: lower-roman; |
list:n | list-style-type: none; |
list:s | list-style-type: square; |
list:ur | list-style-type: upper-roman; |
lts | letter-spacing: ; |
q | quotes: ; |
q:en | quotes: '\201C' '\201D' '\2018' '\2019'; |
q:n | quotes: none; |
q:ru | quotes: '\00AB' '\00BB' '\201E' '\201C'; |
ta | text-align: left; |
ta-lst | text-align-last: ; |
ta:c | text-align: center; |
ta:j | text-align: justify; |
ta:l | text-align: left; |
ta:r | text-align: right; |
tal:a | text-align-last: auto; |
tal:c | text-align-last: center; |
tal:l | text-align-last: left; |
tal:r | text-align-last: right; |
td | text-decoration: none; |
td:l | text-decoration: line-through; |
td:n | text-decoration: none; |
td:o | text-decoration: overline; |
td:u | text-decoration: underline; |
te | text-emphasis: ; |
te:a | text-emphasis: after; |
te:ac | text-emphasis: accent; |
te:b | text-emphasis: before; |
te:c | text-emphasis: circle; |
te:ds | text-emphasis: disc; |
te:dt | text-emphasis: dot; |
te:n | text-emphasis: none; |
th | text-height: ; |
th:a | text-height: auto; |
th:f | text-height: font-size; |
th:m | text-height: max-size; |
th:t | text-height: text-size; |
ti | text-indent: ; |
ti:- | text-indent: -9999px; |
tj | text-justify: ; |
tj:a | text-justify: auto; |
tj:d | text-justify: distribute; |
tj:ic | text-justify: inter-cluster; |
tj:ii | text-justify: inter-ideograph; |
tj:iw | text-justify: inter-word; |
tj:k | text-justify: kashida; |
tj:t | text-justify: tibetan; |
to | text-outline: ; |
to+ | text-outline: 0 0 #000; |
to:n | text-outline: none; |
tov | text-overflow: ellipsis; |
tov:c | text-overflow: clip; |
tov:e | text-overflow: ellipsis; |
tr | text-replace: ; |
tr:n | text-replace: none; |
tsh | text-shadow: hoff voff blur #000; |
tsh+ | text-shadow: 0 0 0 #000; |
tsh:n | text-shadow: none; |
tsh:r | text-shadow: h v blur rgb(0, 0, 0); |
tsh:ra | text-shadow: h v blur rgba(0, 0, 0, .5); |
tt | text-transform: uppercase; |
tt:c | text-transform: capitalize; |
tt:l | text-transform: lowercase; |
tt:n | text-transform: none; |
tt:u | text-transform: uppercase; |
tw | text-wrap: ; |
tw:n | text-wrap: normal; |
tw:no | text-wrap: none; |
tw:s | text-wrap: suppress; |
tw:u | text-wrap: unrestricted; |
va | vertical-align: top; |
va:b | vertical-align: bottom; |
va:bl | vertical-align: baseline; |
va:m | vertical-align: middle; |
va:sub | vertical-align: sub; |
va:sup | vertical-align: super; |
va:t | vertical-align: top; |
va:tb | vertical-align: text-bottom; |
va:tt | vertical-align: text-top; |
whs | white-space: ; |
whs:n | white-space: normal; |
whs:nw | white-space: nowrap; |
whs:p | white-space: pre; |
whs:pl | white-space: pre-line; |
whs:pw | white-space: pre-wrap; |
whsc | white-space-collapse: ; |
whsc:ba | white-space-collapse: break-all; |
whsc:bs | white-space-collapse: break-strict; |
whsc:k | white-space-collapse: keep-all; |
whsc:l | white-space-collapse: loose; |
whsc:n | white-space-collapse: normal; |
wob | word-break: ; |
wob:ba | word-break: break-all; |
wob:bs | word-break: break-strict; |
wob:k | word-break: keep-all; |
wob:l | word-break: loose; |
wob:n | word-break: normal; |
wos | word-spacing: ; |
wow | word-wrap: ; |
wow:b | word-wrap: break-word; |
wow:n | word-wrap: none; |
wow:nm | word-wrap: normal; |
wow:s | word-wrap: suppress; |
wow:u | word-wrap: unrestricted; |
| Аббревиатура | Результат |
|---|---|
cps | caption-side: ; |
cps:b | caption-side: bottom; |
cps:t | caption-side: top; |
ec | empty-cells: ; |
ec:h | empty-cells: hide; |
ec:s | empty-cells: show; |
tbl | table-layout: ; |
tbl:a | table-layout: auto; |
tbl:f | table-layout: fixed; |
| Аббревиатура | Результат |
|---|---|
anim | animation: ; |
anim- | animation: name duration timing-function delay iteration-count direction fill-mode; |
animdel | animation-delay: time; |
animdir | animation-direction: normal; |
animdir:a | animation-direction: alternate; |
animdir:ar | animation-direction: alternate-reverse; |
animdir:n | animation-direction: normal; |
animdir:r | animation-direction: reverse; |
animdur | animation-duration: 0s; |
animfm | animation-fill-mode: both; |
animfm:b | animation-fill-mode: backwards; |
animfm:bh | animation-fill-mode: both; |
animfm:bt | animation-fill-mode: both; |
animfm:f | animation-fill-mode: forwards; |
animic | animation-iteration-count: 1; |
animic:i | animation-iteration-count: infinite; |
animn | animation-name: none; |
animps | animation-play-state: running; |
animps:p | animation-play-state: paused; |
animps:r | animation-play-state: running; |
animtf | animation-timing-function: linear; |
animtf:cb | animation-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1); |
animtf:e | animation-timing-function: ease; |
animtf:ei | animation-timing-function: ease-in; |
animtf:eio | animation-timing-function: ease-in-out; |
animtf:eo | animation-timing-function: ease-out; |
animtf:l | animation-timing-function: linear; |
bxsh | box-shadow: inset hoff voff blur color; |
bxsh:n | box-shadow: none; |
bxsh:r | box-shadow: inset hoff voff blur spread rgb(0, 0, 0); |
bxsh:ra | box-shadow: inset h v blur spread rgba(0, 0, 0, .5); |
trf | transform: ; |
trf:r | transform: rotate(angle); |
trf:sc | transform: scale(x, y); |
trf:scx | transform: scaleX(x); |
trf:scy | transform: scaleY(y); |
trf:skx | transform: skewX(angle); |
trf:sky | transform: skewY(angle); |
trf:t | transform: translate(x, y); |
trf:tx | transform: translateX(x); |
trf:ty | transform: translateY(y); |
trfo | transform-origin: ; |
trfs | transform-style: preserve-3d; |
trs | transition: prop time; |
trsde | transition-delay: time; |
trsdu | transition-duration: time; |
trsp | transition-property: prop; |
trstf | transition-timing-function: tfunc; |
| Аббревиатура | Результат |
|---|---|
@f | @font-face { font-family:; src:url(); } |
@f+ | @font-face { font-family: 'FontName'; src: url('FileName.eot'); src: url('FileName.eot?#iefix') format('embedded-opentype'), url('FileName.woff') format('woff'), url('FileName.ttf') format('truetype'), url('FileName.svg#FontName') format('svg'); font-style: normal; font-weight: normal; } |
@i | @import url(); |
@import | @import url(); |
@kf | @-webkit-keyframes identifier { from { } to { } } @-o-keyframes identifier { from { } to { } } @-moz-keyframes identifier { from { } to { } } @keyframes identifier { from { } to { } } |
@m | @media screen { } |
@media | @media screen { } |
| Аббревиатура | Результат |
|---|---|
orp | orphans: ; |
pgba | page-break-after: ; |
pgba:al | page-break-after: always; |
pgba:au | page-break-after: auto; |
pgba:l | page-break-after: left; |
pgba:r | page-break-after: right; |
pgbb | page-break-before: ; |
pgbb:al | page-break-before: always; |
pgbb:au | page-break-before: auto; |
pgbb:l | page-break-before: left; |
pgbb:r | page-break-before: right; |
pgbi | page-break-inside: ; |
pgbi:au | page-break-inside: auto; |
pgbi:av | page-break-inside: avoid; |
wid | widows: ; |
| Аббревиатура | Результат |
|---|---|
! | !important |
b | bottom: ; |
b:a | bottom: auto; |
cm | /* child */ |
l | left: ; |
l:a | left: auto; |
op:ms | -ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'; |
ori | orientation: ; |
ori:l | orientation: landscape; |
ori:p | orientation: portrait; |
r | right: ; |
r:a | right: auto; |
rg | row-gap: ; |
t | top: ; |
t:a | top: auto; |
wfsm | -webkit-font-smoothing: antialiased; |
wfsm:a | -webkit-font-smoothing: antialiased; |
wfsm:n | -webkit-font-smoothing: none; |
wfsm:s | -webkit-font-smoothing: subpixel-antialiased; |
wfsm:sa | -webkit-font-smoothing: subpixel-antialiased; |
| Аббревиатура | Результат |
|---|---|
! | <!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
a | <a href=""></a> |
a:link | <a href="http://"></a> |
a:mail | <a href="mailto:"></a> |
abbr | <abbr title=""></abbr> |
acr | <acronym title=""></acronym> |
acronym | <acronym title=""></acronym> |
adr | <address></address> |
area | <area shape="" coords="" href="" alt="" /> |
area:c | <area shape="circle" coords="" href="" alt="" /> |
area:d | <area shape="default" href="" alt="" /> |
area:p | <area shape="poly" coords="" href="" alt="" /> |
area:r | <area shape="rect" coords="" href="" alt="" /> |
art | <article></article> |
audio | <audio src=""></audio> |
base | <base href="" /> |
basefont | <basefont /> |
bdo | <bdo dir=""></bdo> |
bdo:l | <bdo dir="ltr"></bdo> |
bdo:r | <bdo dir="rtl"></bdo> |
bq | <blockquote></blockquote> |
br | <br /> |
btn | <button></button> |
btn:b | <button type="button"></button> |
btn:r | <button type="reset"></button> |
btn:s | <button type="submit"></button> |
cap | <caption></caption> |
cmd | <command /> |
col | <col /> |
colg | <colgroup></colgroup> |
colg+ | <colgroup> <col /> </colgroup> |
colgroup+ | <colgroup> <col /> </colgroup> |
command | <command /> |
datag | <datagrid></datagrid> |
datal | <datalist></datalist> |
det | <details></details> |
dl+ | <dl> <dt></dt> <dd></dd> </dl> |
dlg | <dialog></dialog> |
doc | <html> <head> <meta charset="UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
doc4 | <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
emb | <embed src="" type="" /> |
embed | <embed src="" type="" /> |
fig | <figure></figure> |
figc | <figcaption></figcaption> |
form | <form action=""></form> |
form:get | <form action="" method="get"></form> |
form:post | <form action="" method="post"></form> |
frame | <frame /> |
fset | <fieldset></fieldset> |
fst | <fieldset></fieldset> |
ftr | <footer></footer> |
hdr | <header></header> |
hr | <hr /> |
html:4s | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
html:4t | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
html:5 | <!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
html:xml | <html xmlns="http://www.w3.org/1999/xhtml"></html> |
html:xs | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
html:xt | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
html:xxs | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title> </head> <body> </body> </html> |
ifr | <iframe src="" frameborder="0"></iframe> |
iframe | <iframe src="" frameborder="0"></iframe> |
img | <img src="" alt="" /> |
inp | <input type="text" name="" id="" /> |
input | <input type="text" /> |
input:b | <input type="button" value="" /> |
input:button | <input type="button" value="" /> |
input:c | <input type="checkbox" name="" id="" /> |
input:checkbox | <input type="checkbox" name="" id="" /> |
input:color | <input type="color" name="" id="" /> |
input:date | <input type="date" name="" id="" /> |
input:datetime | <input type="datetime" name="" id="" /> |
input:datetime-local | <input type="datetime-local" name="" id="" /> |
input:email | <input type="email" name="" id="" /> |
input:f | <input type="file" name="" id="" /> |
input:file | <input type="file" name="" id="" /> |
input:h | <input type="hidden" name="" /> |
input:hidden | <input type="hidden" name="" /> |
input:i | <input type="image" src="" alt="" /> |
input:image | <input type="image" src="" alt="" /> |
input:month | <input type="month" name="" id="" /> |
input:number | <input type="number" name="" id="" /> |
input:p | <input type="password" name="" id="" /> |
input:password | <input type="password" name="" id="" /> |
input:r | <input type="radio" name="" id="" /> |
input:radio | <input type="radio" name="" id="" /> |
input:range | <input type="range" name="" id="" /> |
input:reset | <input type="reset" value="" /> |
input:s | <input type="submit" value="" /> |
input:search | <input type="search" name="" id="" /> |
input:submit | <input type="submit" value="" /> |
input:t | <input type="text" name="" id="" /> |
input:text | <input type="text" name="" id="" /> |
input:time | <input type="time" name="" id="" /> |
input:url | <input type="url" name="" id="" /> |
input:week | <input type="week" name="" id="" /> |
isindex | <isindex /> |
keygen | <keygen /> |
kg | <keygen /> |
label | <label for=""></label> |
leg | <legend></legend> |
link | <link rel="stylesheet" href="" /> |
link:atom | <link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> |
link:css | <link rel="stylesheet" href="style.css" /> |
link:favicon | <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> |
link:print | <link rel="stylesheet" href="print.css" media="print" /> |
link:rss | <link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" /> |
link:touch | <link rel="apple-touch-icon" href="favicon.png" /> |
map | <map name=""></map> |
map+ | <map name=""> <area shape="" coords="" href="" alt="" /> </map> |
menu:c | <menu type="context"></menu> |
menu:context | <menu type="context"></menu> |
menu:t | <menu type="toolbar"></menu> |
menu:toolbar | <menu type="toolbar"></menu> |
meta | <meta /> |
meta:compat | <meta http-equiv="X-UA-Compatible" content="IE=7" /> |
meta:utf | <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
meta:vp | <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> |
meta:win | <meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> |
obj | <object data="" type=""></object> |
object | <object data="" type=""></object> |
ol+ | <ol> <li></li> </ol> |
opt | <option value=""></option> |
optg | <optgroup></optgroup> |
optg+ | <optgroup> <option value=""></option> </optgroup> |
optgroup+ | <optgroup> <option value=""></option> </optgroup> |
option | <option value=""></option> |
out | <output></output> |
param | <param name="" value="" /> |
prog | <progress></progress> |
script | <script></script> |
script:src | <script src=""></script> |
sect | <section></section> |
select | <select name="" id=""></select> |
select+ | <select name="" id=""> <option value=""></option> </select> |
src | <source></source> |
str | <strong></strong> |
style | <style></style> |
table+ | <table> <tr> <td></td> </tr> </table> |
tarea | <textarea name="" id="" cols="30" rows="10"></textarea> |
textarea | <textarea name="" id="" cols="30" rows="10"></textarea> |
tr+ | <tr> <td></td> </tr> |
ul+ | <ul> <li></li> </ul> |
video | <video src=""></video> |
!!! | <!doctype html> |
!!!4s | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
!!!4t | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
!!!xs | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
!!!xt | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
!!!xxs | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
c | <!-- --> |
cc:ie | <!--[if IE]> <![endif]--> |
cc:ie6 | <!--[if lte IE 6]> <![endif]--> |
cc:noie | <!--[if !IE]><!--> <!--<![endif]--> |
| Аббревиатура | Результат |
|---|---|
ap | <xsl:apply-templates select="" mode=""/> |
api | <xsl:apply-imports/> |
attr | <xsl:attribute name=""></xsl:attribute> |
attrs | <xsl:attribute-set name=""></xsl:attribute-set> |
call | <xsl:call-template name=""/> |
ch | <xsl:choose></xsl:choose> |
choose+ | <xsl:choose> <xsl:when test=""></xsl:when> <xsl:otherwise></xsl:otherwise> </xsl:choose> |
co | <xsl:copy-of select=""/> |
com | <xsl:comment></xsl:comment> |
cp | <xsl:copy select=""/> |
each | <xsl:for-each select=""></xsl:for-each> |
elem | <xsl:element name=""></xsl:element> |
fall | <xsl:fallback></xsl:fallback> |
for | <xsl:for-each select=""></xsl:for-each> |
if | <xsl:if test=""></xsl:if> |
imp | <xsl:import href=""/> |
inc | <xsl:include href=""/> |
key | <xsl:key name="" match="" use=""/> |
msg | <xsl:message terminate="no"></xsl:message> |
nam | <namespace-alias stylesheet-prefix="" result-prefix=""/> |
num | <xsl:number value=""/> |
ot | <xsl:otherwise></xsl:otherwise> |
par | <xsl:param name=""></xsl:param> |
pare | <xsl:param name="" select=""/> |
pres | <xsl:preserve-space elements=""/> |
proc | <xsl:processing-instruction name=""></xsl:processing-instruction> |
sort | <xsl:sort select="" order=""/> |
strip | <xsl:strip-space elements=""/> |
tex | <xsl:text></xsl:text> |
tm | <xsl:template match="" mode=""></xsl:template> |
tmatch | <xsl:template match="" mode=""></xsl:template> |
tn | <xsl:template name=""></xsl:template> |
tname | <xsl:template name=""></xsl:template> |
val | <xsl:value-of select=""/> |
var | <xsl:variable name=""></xsl:variable> |
vare | <xsl:variable name="" select=""/> |
wh | <xsl:when test=""></xsl:when> |
wp | <xsl:with-param name="" select=""/> |
xsl | <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> </xsl:stylesheet> |
xsl:when | <xsl:when test=""></xsl:when> |
Главная страница — index.html: Emmet, JS-дополнение. Открыть любой из файлов можно двойным щелчком в браузере.