atajos para sublimetext

Upload: felipe-de-jesus

Post on 07-Jul-2018

235 views

Category:

Documents


2 download

TRANSCRIPT

  • 8/18/2019 Atajos para Sublimetext

    1/63

    Child:>

    You can use> operator to nest elements inside each other:

    div>ul>li

    ...will produce

     

     

     

    Sibling:+

    Use+ operator to place elements near each other, on the same level:

    div+p+bq

    ...will output

    Climb-up:̂With> operator you’re descending down the generated tree and positions of all sibling

    elements will be resolved against the most deepest element:

    div+div>p>span+em

  • 8/18/2019 Atajos para Sublimetext

    2/63

  • 8/18/2019 Atajos para Sublimetext

    3/63

    Multiplication:*

    With* operator you can define how many times element should be outputted:

    ul>li*5

    ...outputs to

     

     

     

     

     

    Grouping:()

    Parenthesises are used by Emmets’ power users for grouping subtrees in complex

    abbreviations:

    div>(header>ul>li*2>a)+footer>p

    ...expands to

     

     

     

     

     

  • 8/18/2019 Atajos para Sublimetext

    4/63

     

     

     

     

    If you’re working with browser’s DOM, you may think of groups as Document Fragments: each

    group contains abbreviation subtree and all the following elements are inserted at the same

    level as the first element of group.

    You can nest groups inside each other and combine them with multiplication* operator:

    (div>dl>(dt+dd)*")+footer>p

    ...produces

     

     

     

     

     

     

     

     

     

  • 8/18/2019 Atajos para Sublimetext

    5/63

    With groups, you can literally write full page mark-up with a single abbreviation, but please

    don’t do that.

    Attribute operatorsAttribute operators are used to modify attributes of outputted elements. For example, in HTML

    and XML you can quickly addclass attribute to generated element.

    ID and CLASS

    In CSS, you useelem#id andelem$class notation to reach the elements with

    specifiedid orclassattributes. In Emmet, you can use the very same syntax toadd these

    attributes to specified element:

    div#header+div$pa%e+div#footer$class&$class2$class"

    ...will output

  • 8/18/2019 Atajos para Sublimetext

    6/63

    • You don’t have to specify attribute values:td'colspan title will produce with tabstops inside each empty attribute (if your editor supports them).

    • You can use single or double quotes for quoting attribute values.

    • You don’t need to quote values if they don’t contain spaces:td'titlehello

    colspan" will work.

    Item numbering:$

    With multiplication* operator you can repeat elements, but with, you cannumber them.

    Place, operator inside element’s name, attribute’s name or attribute’s value to output current

    number of repeated element:

    ul>li$item,*5

    ...outputs to

     

     

     

  • 8/18/2019 Atajos para Sublimetext

    7/63

     

     

     

     

    To change counter base value, add1 modifier to,:

    ul>li$item,"*5

    …transforms to

  • 8/18/2019 Atajos para Sublimetext

    8/63

     

  • 8/18/2019 Atajos para Sublimetext

    9/63

    Note that4te7t6 is used and parsed as a separate element (like,div,p etc.) but has a special

    meaning when written right after element. For example,a4click6 anda>4click6 will produce

    the same output, buta4click6+b4here6 anda>4click6+b4here6 won’t:

    clickhere

    4click6+b4here6 00>

    clickhere

    In second example the element is placedinside  element. And that’s the difference:

    when4te7t6 is written right after element, it doesn’t change parent context. Here’s morecomplex example showing why it is important:

    p>4lick 6+a4here6+4 to continue6

    ...produces

    lick here to continue

    In this example, to writelick here to continue inside

     element we have explicitly move

    down the tree with> operator afterp, but in case ofa element we don’t have to, since we

    need element withhere word only, without changing parent context.

    For comparison, here’s the same abbreviation written without child> operator:

    p4lick 6+a4here6+4 to continue6

    ...produces

    lick

    here to continue

    Notes on abbreviation formatting

  • 8/18/2019 Atajos para Sublimetext

    10/63

    When you get familiar with Emmet’s abbreviations syntax, you may want to use some

    formatting to make your abbreviations more readable. For example, use spaces between

    elements and operators, like this:

    (header > ul$nav > li*5) + footer

    But it won’t work, because space is astop symbol where Emmet stops abbreviation parsing.

    Many users mistakenly think that each abbreviation should be written in a new line, but they are

    wrong: you can type and expand abbreviationanywhere in the text:

    89:

    All unknown abbreviations will be transformed to tag, e.g. foo → .

    ;lias of html5

    =ocument

    a

    alink

    amail

    abbr

  • 8/18/2019 Atajos para Sublimetext

    11/63

    acronEmF acr

    base

    basefont

    br


    frame

    hr

    bdo

    bdor

    bdol

    col

    link

    linkcss

    linkprint

    linkfavicon

    linktouch

    linkrss

    linkatom

    linkimportF linkim

  • 8/18/2019 Atajos para Sublimetext

    12/63

    meta

    metautf 

    metain

    metavp

    metacompat

    stEle

    script

    scriptsrc

    im%

    im%srcsetF im%s

    im%siLesF im%L

    picture

    sourceF src

    sourcesrcF srcsc

    sourcesrcsetF srcs

    sourcemediaF srcm

    sourcetEpeF srct

  • 8/18/2019 Atajos para Sublimetext

    13/63

    sourcesiLesF srcL

    sourcemediatEpeF srcmt

    sourcemediasiLesF srcmL

    sourcesiLestEpeF srcLt

    iframe

    embed

    obMect

    param

    map

    area

    aread

    areac

    arear

    areap

    form

    form%et

    formpost

  • 8/18/2019 Atajos para Sublimetext

    14/63

    label

    input

    inp

    inputhiddenF inputh

    ;lias of input'tEpehidden name

    inputte7tF inputt

    ;lias of inp

    inputsearch

    ;lias of inp'tEpesearch

    inputemail

    ;lias of inp'tEpeemail

    inputurl

    ;lias of inp'tEpeurl

    inputpassordF inputp

    ;lias of inp'tEpepassord

    inputdatetime

    ;lias of inp'tEpedatetime

    inputdate

    ;lias of inp'tEpedate

  • 8/18/2019 Atajos para Sublimetext

    15/63

    inputdatetime0local

    ;lias of inp'tEpedatetime0local

    inputmonth

    ;lias of inp'tEpemonth

    inputeek

    ;lias of inp'tEpeeek

    inputtime

    ;lias of inp'tEpetime

    inputtel

    ;lias of inp'tEpetel

    inputnumber

    ;lias of inp'tEpenumber

    inputcolor

    ;lias of inp'tEpecolor

    inputcheckbo7F inputc

    ;lias of inp'tEpecheckbo7

    inputradioF inputr

    ;lias of inp'tEperadio

    inputran%e

    ;lias of inp'tEperan%e

  • 8/18/2019 Atajos para Sublimetext

    16/63

  • 8/18/2019 Atajos para Sublimetext

    17/63

    video

    audio

    html7ml

  • 8/18/2019 Atajos para Sublimetext

    18/63

    pic

    ;lias of picture

    ifr

    ;lias of iframe

    emb

    ;lias of embed

    obM

    ;lias of obMect

    cap

    ;lias of caption

    col%

    ;lias of col%roup

    fstF fset

    ;lias of Neldset

    btn

    ;lias of button

    opt%

    ;lias of opt%roup

    tarea

    ;lias of te7tarea

  • 8/18/2019 Atajos para Sublimetext

    19/63

  • 8/18/2019 Atajos para Sublimetext

    20/63

    ;lias of main

    tem

    ;lias of template

    data%

    ;lias of data%rid

    datal

    ;lias of datalist

    k%

    ;lias of keE%en

    out

    ;lias of output

    det

    ;lias of details

    cmd

    ;lias of command

    doc

    ;lias of html>(head>meta'charset,4charset6+title4,4&=ocument66)+bodE

    =ocument

    doc-

    ;lias of html>(head>meta'http0equiv!ontent08Epe! content!te7t/htmlIcharset,4charset6!

    +title4,4&=ocument66)+bodE

  • 8/18/2019 Atajos para Sublimetext

    21/63

    =ocument

    ridprF rid

    ;lias of im%s

    rivieportF riv

    ;lias of im%L

    riartF ria

    ;lias of pic>srcm+im%

    ritEpeF rit

    ;lias of pic>srct+im%

    html-t

    ;lias of -t+doc-'lan%,4lan%6

    =ocument

    html-s

    ;lias of -s+doc-'lan%,4lan%6

    =ocument

    html7t

    ;lias of 7t+doc-'7mlnshttp//$"$or%/&OOO/7html 7mllan%,4lan%6

  • 8/18/2019 Atajos para Sublimetext

    22/63

  • 8/18/2019 Atajos para Sublimetext

    23/63

    tr+

    ;lias of tr>td

    select+

    ;lias of select>option

    opt%roup+F opt%+

    ;lias of opt%roup>option

    pic+

    ;lias of picture>sourcesrcset+im%

    -t

    -s

    7t

    7s

    77s

    c

    ccie

    ccie

  • 8/18/2019 Atajos para Sublimetext

    24/63

    ccnoie

    HH

    CSS module uses fuzzy search to find unknown abbreviations, e.g. ovh == ov0h == ovh == oh.

    If abbreviation wasnt found, it is transformed into !ro!erty name" foo0bar → foo0bar RI

    #ou can !refi$ abbreviations with hy!hen to !roduce vendor%!refi$ed !ro!erties" 0foo

    Sisual Cormattin%

    pos

    positionrelativeI

    poss

    positionstaticI

    posa

    positionabsoluteI

    posr

    positionrelativeI

    posf 

    positionN7edI

    t

    topI

    ta

    topautoI

    r

    ri%htI

    ra

    ri%htautoI

    b

    bottomI

    ba

    bottomautoI

    l

    leftI

  • 8/18/2019 Atajos para Sublimetext

    25/63

    la

    leftautoI

    L

    L0inde7I

    La

    L0inde7autoI

    T

    ToatleftI

    Tn

    ToatnoneI

    Tl

    ToatleftI

    Tr

    Toatri%htI

    cl

    clearbothI

    cln

    clearnoneI

    cll

    clearleftI

    clr

    clearri%htI

    clb

    clearbothI

    d

    displaEblockI

    dn

    displaEnoneI

    db

    displaEblockI

    df 

    displaETe7I

    dif 

    displaEinline0Te7I

    di

  • 8/18/2019 Atajos para Sublimetext

    26/63

    displaEinlineI

    dib

    displaEinline0blockI

    dli

    displaElist0itemI

    dri

    displaErun0inI

    dcp

    displaEcompactI

    dtb

    displaEtableI

    ditb

    displaEinline0tableI

    dtbcp

    displaEtable0captionI

    dtbcl

    displaEtable0columnI

    dtbcl%

    displaEtable0column0%roupI

    dtbh%

    displaEtable0header0%roupI

    dtbf%

    displaEtable0footer0%roupI

    dtbr

    displaEtable0roI

    dtbr%

    displaEtable0ro0%roupI

    dtbc

    displaEtable0cellI

    drb

    displaErubEI

    drbb

    displaErubE0baseI

    drbb%

    displaErubE0base0%roupI

  • 8/18/2019 Atajos para Sublimetext

    27/63

    drbt

    displaErubE0te7tI

    drbt%

    displaErubE0te7t0%roupI

    v

    visibilitEhiddenI

    vv

    visibilitEvisibleI

    vh

    visibilitEhiddenI

    vc

    visibilitEcollapseI

    ov

    overTohiddenI

    ovv

    overTovisibleI

    ovh

    overTohiddenI

    ovs

    overToscrollI

    ova

    overToautoI

    ov7

    overTo07hiddenI

    ov7v

    overTo07visibleI

    ov7h

    overTo07hiddenI

    ov7s

    overTo07scrollI

    ov7a

    overTo07autoI

    ovE

    overTo0EhiddenI

    ovEv

  • 8/18/2019 Atajos para Sublimetext

    28/63

    overTo0EvisibleI

    ovEh

    overTo0EhiddenI

    ovEs

    overTo0EscrollI

    ovEa

    overTo0EautoI

    ovs

    overTo0stElescrollbarI

    ovsa

    overTo0stEleautoI

    ovss

    overTo0stElescrollbarI

    ovsp

    overTo0stElepannerI

    ovsm

    overTo0stElemoveI

    ovsmq

    overTo0stElemarqueeI

    LooF Lm

    Loom&I

    cp

    clipI

    cpa

    clipautoI

    cpr

    cliprect(top ri%ht bottom left)I

    rsL

    resiLeI

    rsLn

    resiLenoneI

    rsLb

    resiLebothI

    rsLh

    resiLehoriLontalI

  • 8/18/2019 Atajos para Sublimetext

    29/63

    rsLv

    resiLeverticalI

    cur

    cursor,4pointer6I

    cura

    cursorautoI

    curd

    cursordefaultI

    curc

    cursorcrosshairI

    curha

    cursorhandI

    curhe

    cursorhelpI

    curm

    cursormoveI

    curp

    cursorpointerI

    curt

    cursorte7tI

    9ar%in U @addin%

    m

    mar%inI

    ma

    mar%inautoI

    mt

    mar%in0topI

    mta

    mar%in0topautoI

    mr

    mar%in0ri%htI

    mra

    mar%in0ri%htautoI

    mb

  • 8/18/2019 Atajos para Sublimetext

    30/63

    mar%in0bottomI

    mba

    mar%in0bottomautoI

    ml

    mar%in0leftI

    mla

    mar%in0leftautoI

    p

    paddin%I

    pt

    paddin%0topI

    pr

    paddin%0ri%htI

    pb

    paddin%0bottomI

    pl

    paddin%0leftI

    Po7 HiLin%

    b7L

    bo70siLin%border0bo7I

    b7Lcb

    bo70siLin%content0bo7I

    b7Lbb

    bo70siLin%border0bo7I

    b7sh

    bo70shadoinset hoV  voV  blur colorI

    b7shr

    bo70shadoinset hoV  voV  blur spread r%b(.F .F .)I

    b7shra

    bo70shadoinset h v blur spread r%ba(.F .F .F $5)I

    b7shn

    bo70shadononeI

    idthI

  • 8/18/2019 Atajos para Sublimetext

    31/63

    a

    idthautoI

    h

    hei%htI

    ha

    hei%htautoI

    ma

    ma70idthI

    man

    ma70idthnoneI

    mah

    ma70hei%htI

    mahn

    ma70hei%htnoneI

    mi

    min0idthI

    mih

    min0hei%htI

    Cont

    fontI

    f+

    font&em ;rialFsans0serif I

    f

    font0ei%htI

    fn

    font0ei%htnormalI

    fb

    font0ei%htboldI

    fbr

    font0ei%htbolderI

    flr

    font0ei%htli%hterI

    fs

  • 8/18/2019 Atajos para Sublimetext

    32/63

    font0stEle,4italic6I

    fsn

    font0stElenormalI

    fsi

    font0stEleitalicI

    fso

    font0stEleobliqueI

    fv

    font0variantI

    fvn

    font0variantnormalI

    fvsc

    font0variantsmall0capsI

    fL

    font0siLeI

    fLa

    font0siLe0adMustI

    fLan

    font0siLe0adMustnoneI

    font0familEI

    Vs

    font0familEserifI

    Vss

    font0familEsans0serifI

    Vc

    font0familEcursiveI

    Vf 

    font0familEfantasEI

    Vm

    font0familEmonospaceI

    Va

    font0familE ;rialF !elvetica 1eue!F elveticaF sans0serifI

    Vt

    font0familE !8imes 1e Goman!F 8imesF PaskervilleF Weor%iaF serifI

  • 8/18/2019 Atajos para Sublimetext

    33/63

    Vv

    font0familE SerdanaF WenevaF sans0serifI

    fef 

    font0eVectI

    fefn

    font0eVectnoneI

    fefe%

    font0eVecten%raveI

    fefeb

    font0eVectembossI

    fefo

    font0eVectoutlineI

    fem

    font0emphasiLeI

    femp

    font0emphasiLe0positionI

    fempb

    font0emphasiLe0positionbeforeI

    fempa

    font0emphasiLe0positionafterI

    fems

    font0emphasiLe0stEleI

    femsn

    font0emphasiLe0stElenoneI

    femsac

    font0emphasiLe0stEleaccentI

    femsdt

    font0emphasiLe0stEledotI

    femsc

    font0emphasiLe0stElecircleI

    femsds

    font0emphasiLe0stElediscI

    fsm

    font0smoothI

    fsma

  • 8/18/2019 Atajos para Sublimetext

    34/63

    font0smoothautoI

    fsmn

    font0smoothneverI

    fsma

    font0smoothalaEsI

    fst

    font0stretchI

    fstn

    font0stretchnormalI

    fstuc

    font0stretchultra0condensedI

    fstec

    font0stretche7tra0condensedI

    fstc

    font0stretchcondensedI

    fstsc

    font0stretchsemi0condensedI

    fstse

    font0stretchsemi0e7pandedI

    fste

    font0stretche7pandedI

    fstee

    font0stretche7tra0e7pandedI

    fstue

    font0stretchultra0e7pandedI

     8e7t

    va

    vertical0ali%ntopI

    vasup

    vertical0ali%nsuperI

    vat

    vertical0ali%ntopI

    vatt

    vertical0ali%nte7t0topI

  • 8/18/2019 Atajos para Sublimetext

    35/63

    vam

    vertical0ali%nmiddleI

    vabl

    vertical0ali%nbaselineI

    vab

    vertical0ali%nbottomI

    vatb

    vertical0ali%nte7t0bottomI

    vasub

    vertical0ali%nsubI

    ta

    te7t0ali%nleftI

    tal

    te7t0ali%nleftI

    tac

    te7t0ali%ncenterI

    tar

    te7t0ali%nri%htI

    taM

    te7t0ali%nMustifEI

    ta0lst

    te7t0ali%n0lastI

    tala

    te7t0ali%n0lastautoI

    tall

    te7t0ali%n0lastleftI

    talc

    te7t0ali%n0lastcenterI

    talr

    te7t0ali%n0lastri%htI

    td

    te7t0decorationnoneI

    tdn

    te7t0decorationnoneI

    tdu

  • 8/18/2019 Atajos para Sublimetext

    36/63

  • 8/18/2019 Atajos para Sublimetext

    37/63

    tM

    te7t0MustifEI

    tMa

    te7t0MustifEautoI

    tMi

    te7t0MustifEinter0ordI

    tMii

    te7t0MustifEinter0ideo%raphI

    tMic

    te7t0MustifEinter0clusterI

    tMd

    te7t0MustifEdistributeI

    tMk

    te7t0MustifEkashidaI

    tMt

    te7t0MustifEtibetanI

    to

    te7t0outlineI

    to+

    te7t0outline. . #...I

    ton

    te7t0outlinenoneI

    tr

    te7t0replaceI

    trn

    te7t0replacenoneI

    tt

    te7t0transformuppercaseI

    ttn

    te7t0transformnoneI

    ttc

    te7t0transformcapitaliLeI

    ttu

    te7t0transformuppercaseI

    ttl

  • 8/18/2019 Atajos para Sublimetext

    38/63

    te7t0transformloercaseI

    t

    te7t0rapI

    tn

    te7t0rapnormalI

    tno

    te7t0rapnoneI

    tu

    te7t0rapunrestrictedI

    ts

    te7t0rapsuppressI

    tsh

    te7t0shadohoV  voV  blur #...I

    tshr

    te7t0shadoh v blur r%b(.F .F .)I

    tshra

    te7t0shadoh v blur r%ba(.F .F .F $5)I

    tsh+

    te7t0shado. . . #...I

    tshn

    te7t0shadononeI

    lh

    line0hei%htI

    lts

    letter0spacin%I

    lts0n

    letter0spacin%normalI

    hs

    hite0spaceI

    hsn

    hite0spacenormalI

    hsp

    hite0spacepreI

    hsn

    hite0spacenorapI

  • 8/18/2019 Atajos para Sublimetext

    39/63

    hsp

    hite0spacepre0rapI

    hspl

    hite0spacepre0lineI

    hsc

    hite0space0collapseI

    hscn

    hite0space0collapsenormalI

    hsck

    hite0space0collapsekeep0allI

    hscl

    hite0space0collapselooseI

    hscbs

    hite0space0collapsebreak0strictI

    hscba

    hite0space0collapsebreak0allI

    ob

    ord0breakI

    obn

    ord0breaknormalI

    obk

    ord0breakkeep0allI

    obba

    ord0breakbreak0allI

    os

    ord0spacin%I

    o

    ord0rapI

    onm

    ord0rapnormalI

    on

    ord0rapnoneI

    ou

    ord0rapunrestrictedI

    os

  • 8/18/2019 Atajos para Sublimetext

    40/63

    ord0rapsuppressI

    ob

    ord0rapbreak0ordI

    Pack%round

    b%

    back%round#...I

    b%+

    back%round#Vf  url() . . no0repeatI

    b%n

    back%roundnoneI

    b%c

    back%round0color#Vf I

    b%ct

    back%round0colortransparentI

    b%i

    back%round0ima%eurl()I

    b%in

    back%round0ima%enoneI

    b%r

    back%round0repeatI

    b%rn

    back%round0repeatno0repeatI

    b%r7

    back%round0repeatrepeat07I

    b%rE

    back%round0repeatrepeat0EI

    b%rsp

    back%round0repeatspaceI

    b%rrd

    back%round0repeatroundI

    b%a

    back%round0attachmentI

    b%af 

    back%round0attachmentN7edI

  • 8/18/2019 Atajos para Sublimetext

    41/63

    b%as

    back%round0attachmentscrollI

    b%p

    back%round0position. .I

    b%p7

    back%round0position07I

    b%pE

    back%round0position0EI

    b%bk

    back%round0breakI

    b%bkbb

    back%round0breakboundin%0bo7I

    b%bkeb

    back%round0breakeach0bo7I

    b%bkc

    back%round0breakcontinuousI

    b%cp

    back%round0clippaddin%0bo7I

    b%cpbb

    back%round0clipborder0bo7I

    b%cppb

    back%round0clippaddin%0bo7I

    b%cpcb

    back%round0clipcontent0bo7I

    b%cpnc

    back%round0clipno0clipI

    b%o

    back%round0ori%inI

    b%opb

    back%round0ori%inpaddin%0bo7I

    b%obb

    back%round0ori%inborder0bo7I

    b%ocb

    back%round0ori%incontent0bo7I

    b%sL

  • 8/18/2019 Atajos para Sublimetext

    42/63

    back%round0siLeI

    b%sLa

    back%round0siLeautoI

    b%sLct

    back%round0siLecontainI

    b%sLcv

    back%round0siLecoverI

    olor

    c

    color#...I

    cr

    colorr%b(.F .F .)I

    cra

    colorr%ba(.F .F .F $5)I

    op

    opacitEI

    Wenerated content

    cnt

    contentXXI

    cntnF ctn

    contentnormalI

    cntoqF ctoq

    contentopen0quoteI

    cntnoqF ctnoq

    contentno0open0quoteI

    cntcqF ctcq

    contentclose0quoteI

    cntncqF ctncq

    contentno0close0quoteI

    cntaF cta

    contentattr()I

    cntcF ctc

    contentcounter()I

  • 8/18/2019 Atajos para Sublimetext

    43/63

    cntcsF ctcs

    contentcounters()I

    ct

    contentI

    q

    quotesI

    qn

    quotesnoneI

    qru

    quotesXY..;PX XY..PPX XY2.&AX XY2.&XI

    qen

    quotesXY2.&X XY2.&=X XY2.&DX XY2.&OXI

    coi

    counter0incrementI

    cor

    counter0resetI

    utline

    ol

    outlineI

    oln

    outlinenoneI

    olo

    outline0oVsetI

    ol

    outline0idthI

    oltn

    outline0idththinI

    olm

    outline0idthmediumI

    oltc

    outline0idththickI

    ols

    outline0stEleI

    olsn

  • 8/18/2019 Atajos para Sublimetext

    44/63

    outline0stElenoneI

    olsdt

    outline0stEledottedI

    olsds

    outline0stEledashedI

    olss

    outline0stElesolidI

    olsdb

    outline0stEledoubleI

    ols%

    outline0stEle%rooveI

    olsr

    outline0stElerid%eI

    olsi

    outline0stEleinsetI

    olso

    outline0stEleoutsetI

    olc

    outline0color#...I

    olci

    outline0colorinvertI

     8ables

    tbl

    table0laEoutI

    tbla

    table0laEoutautoI

    tblf 

    table0laEoutN7edI

    cps

    caption0sideI

    cpst

    caption0sidetopI

    cpsb

    caption0sidebottomI

  • 8/18/2019 Atajos para Sublimetext

    45/63

    ec

    emptE0cellsI

    ecs

    emptE0cellsshoI

    ech

    emptE0cellshideI

    Porder

    bd

    borderI

    bd+

    border&p7 solid #...I

    bdn

    bordernoneI

    bdbk

    border0breakcloseI

    bdbkc

    border0breakcloseI

    bdcl

    border0collapseI

    bdclc

    border0collapsecollapseI

    bdcls

    border0collapseseparateI

    bdc

    border0color#...I

    bdct

    border0colortransparentI

    bdi

    border0ima%eurl()I

    bdin

    border0ima%enoneI

    bdti

    border0top0ima%eurl()I

    bdtin

  • 8/18/2019 Atajos para Sublimetext

    46/63

    border0top0ima%enoneI

    bdri

    border0ri%ht0ima%eurl()I

    bdrin

    border0ri%ht0ima%enoneI

    bdbi

    border0bottom0ima%eurl()I

    bdbin

    border0bottom0ima%enoneI

    bdli

    border0left0ima%eurl()I

    bdlin

    border0left0ima%enoneI

    bdci

    border0corner0ima%eurl()I

    bdcin

    border0corner0ima%enoneI

    bdcic

    border0corner0ima%econtinueI

    bdtli

    border0top0left0ima%eurl()I

    bdtlin

    border0top0left0ima%enoneI

    bdtlic

    border0top0left0ima%econtinueI

    bdtri

    border0top0ri%ht0ima%eurl()I

    bdtrin

    border0top0ri%ht0ima%enoneI

    bdtric

    border0top0ri%ht0ima%econtinueI

    bdbri

    border0bottom0ri%ht0ima%eurl()I

    bdbrin

    border0bottom0ri%ht0ima%enoneI

  • 8/18/2019 Atajos para Sublimetext

    47/63

    bdbric

    border0bottom0ri%ht0ima%econtinueI

    bdbli

    border0bottom0left0ima%eurl()I

    bdblin

    border0bottom0left0ima%enoneI

    bdblic

    border0bottom0left0ima%econtinueI

    bdf 

    border0NtrepeatI

    bdfc

    border0NtclipI

    bdfr

    border0NtrepeatI

    bdfsc

    border0NtscaleI

    bdfst

    border0NtstretchI

    bdfo

    border0NtoverriteI

    bdfof 

    border0NtoverToI

    bdfsp

    border0NtspaceI

    bdlen

    border0len%thI

    bdlena

    border0len%thautoI

    bdsp

    border0spacin%I

    bds

    border0stEleI

    bdsn

    border0stElenoneI

    bdsh

  • 8/18/2019 Atajos para Sublimetext

    48/63

  • 8/18/2019 Atajos para Sublimetext

    49/63

    bdtsn

    border0top0stElenoneI

    bdtc

    border0top0color#...I

    bdtct

    border0top0colortransparentI

    bdrF br

    border0ri%htI

    bdr+

    border0ri%ht&p7 solid #...I

    bdrn

    border0ri%htnoneI

    bdr

    border0ri%ht0idthI

    bdrst

    border0ri%ht0stEleI

    bdrstn

    border0ri%ht0stElenoneI

    bdrc

    border0ri%ht0color#...I

    bdrct

    border0ri%ht0colortransparentI

    bdbF bb

    border0bottomI

    bdb+

    border0bottom&p7 solid #...I

    bdbn

    border0bottomnoneI

    bdb

    border0bottom0idthI

    bdbs

    border0bottom0stEleI

    bdbsn

    border0bottom0stElenoneI

    bdbc

  • 8/18/2019 Atajos para Sublimetext

    50/63

    border0bottom0color#...I

    bdbct

    border0bottom0colortransparentI

    bdlF bl

    border0leftI

    bdl+

    border0left&p7 solid #...I

    bdln

    border0leftnoneI

    bdl

    border0left0idthI

    bdls

    border0left0stEleI

    bdlsn

    border0left0stElenoneI

    bdlc

    border0left0color#...I

    bdlct

    border0left0colortransparentI

    bdrs

    border0radiusI

    bdtrrs

    border0top0ri%ht0radiusI

    bdtlrs

    border0top0left0radiusI

    bdbrrs

    border0bottom0ri%ht0radiusI

    bdblrs

    border0bottom0left0radiusI

    :ists

    lis

    list0stEleI

    lisn

    list0stElenoneI

  • 8/18/2019 Atajos para Sublimetext

    51/63

    lisp

    list0stEle0positionI

    lispi

    list0stEle0positioninsideI

    lispo

    list0stEle0positionoutsideI

    list

    list0stEle0tEpeI

    listn

    list0stEle0tEpenoneI

    listd

    list0stEle0tEpediscI

    listc

    list0stEle0tEpecircleI

    lists

    list0stEle0tEpesquareI

    listdc

    list0stEle0tEpedecimalI

    listdclL

    list0stEle0tEpedecimal0leadin%0LeroI

    listlr

    list0stEle0tEpeloer0romanI

    listur

    list0stEle0tEpeupper0romanI

    lisi

    list0stEle0ima%eI

    lisin

    list0stEle0ima%enoneI

    @rint

    p%bb

    pa%e0break0beforeI

    p%bbau

    pa%e0break0beforeautoI

    p%bbal

  • 8/18/2019 Atajos para Sublimetext

    52/63

    pa%e0break0beforealaEsI

    p%bbl

    pa%e0break0beforeleftI

    p%bbr

    pa%e0break0beforeri%htI

    p%bi

    pa%e0break0insideI

    p%biau

    pa%e0break0insideautoI

    p%biav

    pa%e0break0insideavoidI

    p%ba

    pa%e0break0afterI

    p%baau

    pa%e0break0afterautoI

    p%baal

    pa%e0break0afteralaEsI

    p%bal

    pa%e0break0afterleftI

    p%bar

    pa%e0break0afterri%htI

    orp

    orphansI

    id

    idosI

    thers

    important

    font0face 4 font0familEI srcurl(R)I 6

    f+

    font0face 4 font0familE XCont1ameXI src url(XCile1ame$eotX)I src url(XCile1ame$eotZ#ieN7X)format(Xembedded0opentEpeX)F url(XCile1ame$oVX) format(XoVX)F url(XCile1ame$ttfX)format(XtruetEpeX)F url(XCile1ame$sv%#Cont1ameX) format(Xsv%X)I font0stEle normalI font0

    ei%ht normalI 6

  • 8/18/2019 Atajos para Sublimetext

    53/63

    iF import

    import url()I

    kf 

    0ebkit0keEframes identiNer 4 from 4 6 to 4 6 6 0o0keEframes identiNer 4 from 4 6 to 4 6 6

    0moL0keEframes identiNer 4 from 4 6 to 4 6 6 keEframes identiNer 4 from 4 6 to 4 6 6

    mF media

    media screen 4 6

    ac

    ali%n0contentI

    acc

    ali%n0contentcenterI

    acfe

    ali%n0contentTe70endI

    acfs

    ali%n0contentTe70startI

    acs

    ali%n0contentstretchI

    acsa

    ali%n0contentspace0aroundI

    acsb

    ali%n0contentspace0beteenI

    ai

    ali%n0itemsI

    aib

    ali%n0itemsbaselineI

    aic

    ali%n0itemscenterI

    aife

    ali%n0itemsTe70endI

    aifs

    ali%n0itemsTe70startI

    ais

    ali%n0itemsstretchI

    anim

    animationI

  • 8/18/2019 Atajos para Sublimetext

    54/63

    anim0

    animationname duration timin%0function delaE iteration0count direction Nll0modeI

    animdel

    animation0delaEtimeI

    animdir

    animation0directionnormalI

    animdira

    animation0directionalternateI

    animdirar

    animation0directionalternate0reverseI

    animdirn

    animation0directionnormalI

    animdirr

    animation0directionreverseI

    animdur

    animation0duration.sI

    animfm

    animation0Nll0modebothI

    animfmb

    animation0Nll0modebackardsI

    animfmbtF animfmbh

    animation0Nll0modebothI

    animfmf 

    animation0Nll0modeforardsI

    animic

    animation0iteration0count&I

    animici

    animation0iteration0countinNniteI

    animn

    animation0namenoneI

    animps

    animation0plaE0staterunnin%I

    animpsp

    animation0plaE0statepausedI

    animpsr

  • 8/18/2019 Atajos para Sublimetext

    55/63

    animation0plaE0staterunnin%I

    animtf 

    animation0timin%0functionlinearI

    animtfcb

    animation0timin%0functioncubic0beLier(.$&F .$3F &$.F .$&)I

    animtfe

    animation0timin%0functioneaseI

    animtfei

    animation0timin%0functionease0inI

    animtfeio

    animation0timin%0functionease0in0outI

    animtfeo

    animation0timin%0functionease0outI

    animtfl

    animation0timin%0functionlinearI

    ap

    appearance,4none6I

    as

    ali%n0selfI

    asa

    ali%n0selfautoI

    asb

    ali%n0selfbaselineI

    asc

    ali%n0selfcenterI

    asfe

    ali%n0selfTe70endI

    asfs

    ali%n0selfTe70startI

    ass

    ali%n0selfstretchI

    bfv

    backface0visibilitEI

    bfvh

    backface0visibilitEhiddenI

  • 8/18/2019 Atajos para Sublimetext

    56/63

    bfvv

    backface0visibilitEvisibleI

    b%ie

    Nlterpro%id=JKma%e8ransform$9icrosoft$;lphaKma%e:oader(srcX 7$pn%XFsiLin%9ethodXcropX)I

    cm

    /* ,4child6 */

    colm

    columnsI

    colmc

    column0countI

    colmf 

    column0NllI

    colm%

    column0%apI

    colmr

    column0ruleI

    colmrc

    column0rule0colorI

    colmrs

    column0rule0stEleI

    colmr

    column0rule0idthI

    colms

    column0spanI

    colm

    column0idthI

    dib+

    displaE inline0blockI *displaE inlineI *Loom &I

    f7

    Te7I

    f7b

    Te70basisI

    f7d

    Te70directionI

    f7dc

  • 8/18/2019 Atajos para Sublimetext

    57/63

    Te70directioncolumnI

    f7dcr

    Te70directioncolumn0reverseI

    f7dr

    Te70directionroI

    f7drr

    Te70directionro0reverseI

    f7f 

    Te70ToI

    f7%

    Te70%roI

    f7sh

    Te70shrinkI

    f7

    Te70rap I

    f7n

    Te70rapnorapI

    f7

    Te70raprapI

    f7r

    Te70raprap0reverseI

     Mc

     MustifE0contentI

     Mcc

     MustifE0contentcenterI

     Mcfe

     MustifE0contentTe70endI

     Mcfs

     MustifE0contentTe70startI

     Mcsa

     MustifE0contentspace0aroundI

     Mcsb

     MustifE0contentspace0beteenI

    mar

    ma70resolutionresI

  • 8/18/2019 Atajos para Sublimetext

    58/63

    mir

    min0resolutionresI

    op+

    opacitE I Nlter alpha(opacitE)I

    opie

    Nlterpro%id=JKma%e8ransform$9icrosoft$;lpha(pacitE&..)I

    opms

    0ms0NlterXpro%id=JKma%e8ransform$9icrosoft$;lpha(pacitE&..)XI

    ord

    orderI

    ori

    orientationI

    oril

    orientationlandscapeI

    orip

    orientationportraitI

    tov

    te7t0overTo,4ellipsis6I

    tovc

    te7t0overToclipI

    tove

    te7t0overToellipsisI

    trf 

    transformI

    trfr

    transform rotate(an%le)I

    trfr7

    transform rotateJ(an%le)I

    trfrE

    transform rotate?(an%le)I

    trfrL

    transform rotate[(an%le)I

    trfsc

    transform scale(7F E)I

    trfsc"

  • 8/18/2019 Atajos para Sublimetext

    59/63

    transform scale"d(7F EF L)I

    trfsc7

    transform scaleJ(7)I

    trfscE

    transform scale?(E)I

    trfscL

    transform scale[(L)I

    trfsk7

    transform skeJ(an%le)I

    trfskE

    transform ske?(an%le)I

    trft

    transform translate(7F E)I

    trft"

    transform translate"d(t7F tEF tL)I

    trft7

    transform translateJ(7)I

    trftE

    transform translate?(E)I

    trftL

    transform translate[(L)I

    trfo

    transform0ori%inI

    trfs

    transform0stElepreserve0"dI

    trs

    transitionprop timeI

    trsde

    transition0delaEtimeI

    trsdu

    transition0durationtimeI

    trsp

    transition0propertEpropI

    trstf 

    transition0timin%0functiontfuncI

  • 8/18/2019 Atajos para Sublimetext

    60/63

  • 8/18/2019 Atajos para Sublimetext

    61/63

    ap

    api

    imp

    inc

    ch

    7slhenF h

    ot

    if 

    par

    pare

    var

    vare

    p

    keE

    elem

    attr

    attrs

  • 8/18/2019 Atajos para Sublimetext

    62/63

    cp

    co

    val

    eachF for

    te7

    com

    ms%

    fall

    num

    nam

    pres

    strip

    proc

    sort

    choose+

    ;lias of 7slchoose>7slhen+7slotherise

    7sl

    ;lias of +7slstElesheet'version&$. 7mlns7slhttp//$"$or%/&OOO/JH:/8ransform>4 R6

  • 8/18/2019 Atajos para Sublimetext

    63/63